When i specify my callback url for the GetRequestToken() method and it’s executed, the TokenSecret & Token is null but if i don’t provide my callback url then i successfully get the TokenSecret & Token for the authorization. What’s the problem?
some live code:
/////////
TwitterService TWservice = new TwitterService(consumerKey, consumerSecret);
String callback = Url.Action("Callback", "Twitter", null, HttpContext.Request.Url.Scheme);
OAuthRequestToken requestToken = TWservice.GetRequestToken(callback);
////////
thanks in advance.
PS: im using TweetSharp library