I am working on the application where I have to get the subscriberid, oauth_token and oauth_token_secret for Google, Yahoo and Facebook. How can I do this?
I am working on the application where I have to get the subscriberid, oauth_token
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well for all OAuth system you need to follow the below mentioned steps
secret keyandclient_keyto OAuth system to getAuthorizationUrlwhich will contain request token.verification code, use thatverification_codealong with the request token got in step2 to getAccess token.Access_Tokenyou can interact with the oAuth system to access user data.out of them only step 3 is where user will be in directly engaged and for rest of steps things will happen behind the scene.
Each service provide has a well defined documentation like at which URL to send request to get request token/Access Token and what they expect in request data what they will send back in conformation etc.
here are the details
Using OAuth 2.0 to Access Google APIs
Yahoo OAuth documentation
FaceBook OAuth
Though i have never worked with mobile application but the protocol is more or less same.
My suggestion is to use some API to achieve this.
hope will help you