com.lajospolya.spotifyapiwrapper.request.PostRefreshToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-api-wrapper Show documentation
Show all versions of spotify-api-wrapper Show documentation
This project wraps the Spotify public API in order to allow users to intuitively use it
package com.lajospolya.spotifyapiwrapper.request;
import com.lajospolya.spotifyapiwrapper.body.RefreshToken;
import com.lajospolya.spotifyapiwrapper.response.AuthorizingToken;
import java.net.http.HttpRequest;
/**
* @author Lajos Polya
*
* Represents the endpoint at POST https://accounts.spotify.com/api/token as descrbibed at
* https://developer.spotify.com/documentation/web-api/reference-beta/
*/
public class PostRefreshToken extends AbstractSpotifyRequest
{
private static final String REQUEST_URI_STRING = "https://accounts.spotify.com/api/token";
private PostRefreshToken(HttpRequest.Builder requestBuilder)
{
super(requestBuilder);
}
public static class Builder extends AbstractBuilder
{
private String refreshToken;
public Builder(String refreshToken)
{
spotifyRequestParamValidationService.validateParametersNotNull(refreshToken);
this.refreshToken = refreshToken;
}
@Override
public PostRefreshToken build()
{
SpotifyRequestBuilder spotifyRequestBuilder = new SpotifyRequestBuilder(REQUEST_URI_STRING);
spotifyRequestBuilder.contentType(URL_ENCODED_CONTENT_TYPE_HEADER_VALUE);
return new PostRefreshToken(
spotifyRequestBuilder.createPostRequestWithStringBody(
new RefreshToken(refreshToken).toUrlEncodedString()));
}
}
}