Does anyone know how to log a user out of Twitter using Tweetsharp?
I am using svc.EndSession(); where svc is a TwitterService object.
However the user (me) stays logged in. A quick refresh of Twitter.com shows that I am still logged-in even after hitting the logout button (and running svc.EndSession();) on my asp.net app.
Hope someone can help, thanks.
I am not familiar with
Tweetsharp, but it seems, that Twitter is holding control over logged in users in a cookie they own. An answer posted to this question on SO states some workaround using the/oauth/authorizeinstead of/oauth/authenticatepath. Don’t know for sure, if that helps you as you are usingTweetsharp.