hi this sree,
I am working with an external application on MySpaceID. I am trying to access user data through OAuth 1.0. I am following these steps
1.Sending request for request Token, in response I got
2.Redirecting user to authorization url
3.Getting access Token and OAuth verifier.
4.Sending request to get profile data. Here I am getting 401 from the MySpace
my request url is like this
http://api.myspace.com/v1/users/" +userId+ "/profile.json?oauth_consumer_key="+CONSUMER_KEY+"&oauth_nonce="+nonce+"&oauth_signature="+signature+"&oauth_signature_method=HMAC-SHA1&oauth_timestamp="+timestamp+"&oauth_version=1.0";
I am generating oauth_signature using consumer_secret and request_secret. I thought my signature may be wrong.
But when I am trying with MySpaceID API tool generated url I am getting the profile data.
Please let me Know what I am doing wrong. Please its very important .