* @param ctx
* Restlet scope
*/
public FacebookProxy(String clientId, String clientSecret, String scope,
Map<String, String> accessTokens, Context ctx) {
super(new OAuthParameters(clientId, clientSecret, FB_GRAPH + "oauth/",
Scopes.toRoles(scope)), ctx);
this.accessTokens = accessTokens;
}