Package org.restlet.ext.oauth

Examples of org.restlet.ext.oauth.OAuthParameters

@author Kristoffer Gronowski

     * @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;
    }
View Full Code Here

TOP

Related Classes of org.restlet.ext.oauth.OAuthParameters

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.