Twitter 访问令牌会过期吗?

发布于 2024-12-19 03:20:50 字数 139 浏览 2 评论 0原文

我正在构建一个网络应用程序,用户可以在其中管理他的 Twitter 帐户。我已经创建了 Twitter 应用程序,一旦用户验证了自己的身份,应用程序就会从 Twitter 获取访问令牌。此访问令牌是否过期,或者我可以存储它并代表用户发出请求,而无需要求他再次登录?

I am building a web app from where the user can manage his twitter account. I've created the twitter app and once the user authenticates himself the application gets the access token from twitter. Does this access token expire or I can store it and make request, on user's behalf, without asking from him to log in again ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

比忠 2024-12-26 03:20:50

这是他们在开发页面上所说的

问题:访问令牌的有效期是多长时间?

访问令牌没有明确过期。访问令牌将是
如果用户明确撤销其应用程序中的应用程序,则该应用程序无效
Twitter 帐户设置,或者 Twitter 是否暂停应用程序。如果一个
应用程序被暂停,Twitter应用程序中会有一条说明
仪表板表明它已被暂停。

可以在此处找到更多详细信息

Twitter 常见问题解答

Here is what they saying in there development page

Question: How long does an access token last?

Access tokens are not explicitly expired. An access token will be
invalidated if a user explicitly revokes an application in the their
Twitter account settings, or if Twitter suspends an application. If an
application is suspended, there will be a note in the Twitter app
dashboard stating that it has been suspended.

More details can be found here

FAQ Twitter

睡美人的小仙女 2024-12-26 03:20:50

从 Twitter API 错误代码来看,它看起来可能会过期:

API 请求包含无效的不记名令牌 使用不正确或
撤销不记名令牌来发出 API 请求将导致:

HTTP/1.1 401 未经授权的内容类型:application/json;
charset=utf-8 内容长度:61 ...

{"errors":[{"message":"令牌无效或过期","code":89}]}

源链接:https://dev.twitter.com/oauth/application-only

From the Twitter API error codes it looks like it can expire:

API request contains invalid bearer token Using an incorrect or
revoked bearer token to make API requests will result in:

HTTP/1.1 401 Unauthorized Content-Type: application/json;
charset=utf-8 Content-Length: 61 ...

{"errors":[{"message":"Invalid or expired token","code":89}]}

Source link: https://dev.twitter.com/oauth/application-only

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文