de.sonallux.spotify.api.apis.users.GetUsersProfileRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api-java Show documentation
Show all versions of spotify-web-api-java Show documentation
A Java wrapper for Spotify's Web API
The newest version!
package de.sonallux.spotify.api.apis.users;
import com.fasterxml.jackson.core.type.TypeReference;
import de.sonallux.spotify.api.http.ApiCall;
import de.sonallux.spotify.api.http.ApiClient;
import de.sonallux.spotify.api.http.Request;
import de.sonallux.spotify.api.models.*;
/**
* Get User's Profile request
*
* Response
* A user
*/
public class GetUsersProfileRequest {
private static final TypeReference RESPONSE_TYPE = new TypeReference<>() {};
private final ApiClient apiClient;
private final Request request;
/**
* Get User's Profile request
* @param apiClient The API client
* @param userId The user's Spotify user ID.
*/
public GetUsersProfileRequest(ApiClient apiClient, String userId) {
this.apiClient = apiClient;
this.request = new Request("GET", "/users/{user_id}")
.addPathParameter("user_id", String.valueOf(userId))
;
}
/**
* Build the request into an executable api call
* @return an executable api call
*/
public ApiCall build() {
return apiClient.createApiCall(request, RESPONSE_TYPE);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy