Hello,
I am using this method in the oauth java libs to generate a request to
exchange a request token for an access token:
/**
* Get an access token from the service provider (in exchange for an
* authorized request token).
*/
public OAuthMessage getAccessToken(
OAuthAccessor accessor, String httpMethod,
Collection<? extends Map.Entry> parameters )
throws IOException, OAuthException, URISyntaxException
When entering this method, the state is:
httpMethod: null
accessor.requestToken = [my nonencoded request token]
accessor.accessToken = null;
accessor.tokenSecret = null;
accessor.consumer.callbackURL = [my nonencoded callback URL]
accessor.consumer.consumerKey = [my nonencoded consumer key]
accessor.consumer.consumerSecret = [my nonencoded consumer secret]
accessor.consumer.properties = {serviceProvider.baseURL=
https://www.google.com/, name=google}
parameters = {scope=http%3A%2F%2Fwww.google.com%2Fbase%2Ffeeds%2F}
What could I be doing wrong here?
BTW, would there be any way of adding some more documentation to this method
so users can know if it is being used correctly or not?
Thank you!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"OAuth" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/oauth?hl=en
-~----------~----~----~----~------~----~------~--~---