Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How we can permanently integrate LinkedIn, twitter in website/app using OAuth.

Once user connected to app using OAuth then he'll never ask again for OAuth connection even he change his password for LinkedIn later.

Like integration of Facebook <->Twitter:

Once we connect twitter account with facebook it automatically post on twitter when we post at facebook.

share|improve this question

1 Answer

up vote 0 down vote accepted

Not sure what you mean by "permanent", but once you've successfully authenticated the user, you'll have their access token and secret which can be used to make authenticated API calls to LinkedIn on their behalf. You should store this token/secret to make future calls.

Note: this token is only valid for 60 days, however (similar to Facebook). You'll need to refresh the token before 60 days, otherwise the user will need to be presented with the OAuth login dialog again to essentially re-auth your application.

This documentation goes into detail and provides code samples: https://developer.linkedin.com/documents/authentication

share|improve this answer
Thanks for your answer. So how we can refresh token if user not visited for 60 days? – fmask Jan 19 at 14:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.