All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.scribe.builder.api.MendeleyApi Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy