public interface OAuth2Provider
| Modifier and Type | Method and Description |
|---|---|
String |
getAuthLocation()
This is the URL we will redirect the user to, where they will enter their
username and password into the remote application (if required) and authorise
our app
|
String |
getClientId() |
String |
getClientSecret() |
Collection<String> |
getPermissionScopes()
Returns a list of named permission scopes, such as "email", "profile", etc,
which determine what this client is permitted to do
|
String |
getProfileLocation() |
String |
getProviderId()
Identifies the provider to this application, ie 'facebook' or 'twitter' or 'myownserver'
|
String |
getRedirectURI() |
String |
getTokenLocation()
This is the URL we will call direct (server to server) to get an access token
from the access code received in the redirect back to our site from the oauth server
|
String getProviderId()
String getAuthLocation()
String getClientId()
String getClientSecret()
String getRedirectURI()
String getTokenLocation()
String getProfileLocation()
Collection<String> getPermissionScopes()