com.github.scribejava.apis.PinterestApi Maven / Gradle / Ivy
package com.github.scribejava.apis;
import com.github.scribejava.core.builder.api.DefaultApi20;
import com.github.scribejava.core.oauth2.clientauthentication.ClientAuthentication;
import com.github.scribejava.core.oauth2.clientauthentication.RequestBodyAuthenticationScheme;
public class PinterestApi extends DefaultApi20 {
protected PinterestApi() {
}
private static class InstanceHolder {
private static final PinterestApi INSTANCE = new PinterestApi();
}
public static PinterestApi instance() {
return InstanceHolder.INSTANCE;
}
@Override
public String getAccessTokenEndpoint() {
return "https://api.pinterest.com/v1/oauth/token";
}
@Override
protected String getAuthorizationBaseUrl() {
return "https://api.pinterest.com/oauth";
}
@Override
public ClientAuthentication getClientAuthentication() {
return RequestBodyAuthenticationScheme.instance();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy