org.scribe.builder.api.MendeleyApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scribe Show documentation
Show all versions of scribe Show documentation
The best OAuth library out there
package org.scribe.builder.api;
import org.scribe.model.*;
/**
* @author Arieh "Vainolo" Bibliowicz
* @see http://apidocs.mendeley.com/home/authentication
*/
public class MendeleyApi extends DefaultApi10a
{
private static final String AUTHORIZATION_URL = "http://api.mendeley.com/oauth/authorize?oauth_token=%s";
@Override
public String getRequestTokenEndpoint()
{
return "http://api.mendeley.com/oauth/request_token/";
}
@Override
public String getAccessTokenEndpoint()
{
return "http://api.mendeley.com/oauth/access_token/";
}
@Override
public String getAuthorizationUrl(Token requestToken)
{
return String.format(AUTHORIZATION_URL, requestToken.getToken());
}
@Override
public Verb getAccessTokenVerb()
{
return Verb.GET;
}
@Override
public Verb getRequestTokenVerb()
{
return Verb.GET;
}
}