Package org.apache.qpid.server.security.auth.manager.oauth2.facebook

Identity resolver utilising Facebook's OAuth 2.0 API

To use Facebook as an authentication provider, the OAuth2Authentication needs to be configured to co-operate with the identity resolver like so:

 "type" : "OAuth2",
 "authorizationEndpointURI" : "https://www.facebook.com/dialog/oauth",
 "tokenEndpointURI" : "https://graph.facebook.com/v2.5/oauth/access_token",
 "tokenEndpointNeedsAuth" : false,
 "identityResolverType" : "Facebook",
 "identityResolverEndpointURI" : "https://graph.facebook.com/v2.5/me",
 "clientId" : "......",
 "clientSecret" : "....",