I faced same when integrating with Twitter OAuth service. Following was the work around.
// Create parameters map Map<String, String> map = getPropertiesMap(); // and store it in the map map.put(OAuth.OAUTH_CALLBACK, callbackUrl); // Get the request token passing that parameters map oAuthClient.getRequestToken(accessor, OAuthMessage.POST, map.entrySet()); token = accessor.requestToken; secret = accessor.tokenSecret; - Lasantha Lasantha Kularatne http://lasantha.blogspot.com/ ---------------------------------------------------------------- On Sun, Aug 29, 2010 at 2:00 PM, Claudio Bisegni <[email protected]> wrote: > I have download all OAuth java package and i have compiled and run > the provider and client for make a self consistent test. i have notice > that if i set the callbackURL in OAuthConsumer the provider get the > callbackURL only form startup property file. there is a way to get the > one passed by request post? > > Thanks in advaced. > Claudio > > -- 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.
