When I login to tripit in my app I get an access token. How can I an access token so that I could access protected resources any other time I use my app? Without getting the request token again and without authorization.
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.
Look at the TripIt API documentation, especially the OAuth section. You exchange the Request Token for an Access Token. The Access Token is stored on your side for the user and is used to access protected resources going forward. Once you have an Access Token, you don’t need to be authorized again or deal with a Request Token again.