使用 Twitter4j 退出 Twitter
你好: 我的 SignoutServlet 是否也可以退出 Twitter?
我正在使用这样的东西
public void doGet(HTTPServletReq req, HTTPServletRes res) throws TwitterException,ServletException
{
request.getSession(false).invalidate();
}
我的问题是,即使我使会话无效,我的应用程序也不会从 Twitter 注销。
有关如何从 Twitter4j 注销 Twitter 的任何线索/想法吗?
谢谢!
Hi:
Is there anyway my SignoutServlet can sign out of Twitter too ?
I am using something like this
public void doGet(HTTPServletReq req, HTTPServletRes res) throws TwitterException,ServletException
{
request.getSession(false).invalidate();
}
My question is even when I am invalidating the session, my application doesnt log out of Twitter.
Any clues/ideas of how to log out of Twitter from Twitter4j?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要注销 Twitter,只需删除凭据即可。
意味着删除访问令牌很简单。
for signout to twitter just delete the credentials.
means delete the access token simple.