推特锐利注销
有谁知道如何使用 Tweetsharp 让用户退出 Twitter?
我正在使用 svc.EndSession(); ,其中 svc 是 TwitterService 对象。
然而,用户(我)保持登录状态。快速刷新 Twitter.com 显示,即使在我的计算机上点击注销按钮(并运行 svc.EndSession();
)后,我仍然处于登录状态。 ASP.NET 应用程序。
希望有人能帮忙,谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不熟悉
Tweetsharp
,但 Twitter 似乎通过他们拥有的 cookie 来控制登录用户。发布到此问题的答案 on SO 声明了一些使用/oauth/authorize
而不是/oauth/authenticate
路径的解决方法。不确定这对您使用Tweetsharp
是否有帮助。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/authorize
instead of/oauth/authenticate
path. Don't know for sure, if that helps you as you are usingTweetsharp
.