![JAR search and dependency download from the Maven repository](/logo.png)
org.scribe.builder.api.XingApi 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
The newest version!
package org.scribe.builder.api;
import org.scribe.model.*;
public class XingApi extends DefaultApi10a
{
private static final String AUTHORIZE_URL = "https://api.xing.com/v1/authorize?oauth_token=%s";
@Override
public String getAccessTokenEndpoint()
{
return "https://api.xing.com/v1/access_token";
}
@Override
public String getRequestTokenEndpoint()
{
return "https://api.xing.com/v1/request_token";
}
@Override
public String getAuthorizationUrl(Token requestToken)
{
return String.format(AUTHORIZE_URL, requestToken.getToken());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy