can someone provide the complete solution for this issue?
As part of the process(https://dev.twitter.com/docs/auth/implementing-sign-twitter ) provided by twitter to obtain final auth_token , iâm able to get the response for step 1 & 2.
But when i try to get the final auth_token by making the request using the below URL, iâm still geting 401 error.
string loginURL ="https://api.twitter.com/oauth/access_token?oauth_consumer_key="+TwitterAPI.Consumerkey +"&oauth_nonce="+nonce+"&oauth_signature="+sign+"&oauth_signature_method=HMAC-SHA1&oauth_timestamp="+timeStamp+ "&oauth_token="+TwitterAPI.AuthToken+"&oauth_verifier="+TwitterAPI.AuthTokenVerifier+"&oauth_version=1.0";
whatâs is wrong in this URL?
itâll be of great help, if some one provide the solution for this issue.