Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to sign out in LinkedIn using authrequest using android?

i developed one app integrated with linkedIn..! i do SignIn authentication in linkedIn using OAuth Service to post the Network Update..but now how to sign out (de-authenticate) to the LinkedIn automatically?

Thanks in adv..

like image 550
Nirav Dangi Avatar asked Apr 29 '11 11:04

Nirav Dangi


1 Answers

As per the official blog

Token Invalidation

Now you can invalidate an OAuth token for your application. Just send an OAuth signed GET request to:

https://api.linkedin.com/uas/oauth/invalidateToken

A 200 response indicates that the token was successfully invalidated.

However as per this :

Third party applications do not have any way to log a user out from LinkedIn - this is controlled by the website. Invalidating the token makes the user re-authorize the next time they try to use the application, but once they have logged into LinkedIn their browser will remain logged in until they log out via the website.

So In conclusion : as of this date of writing, Linked In does not give this support to 3rd Party Applications

like image 197
Reno Avatar answered Sep 19 '22 13:09

Reno