使用访问令牌获取 Twitter 用户名
我有一个 php 应用程序并成功创建了一个函数来在数据库中保存访问令牌和机密。 (这是关于将特定内容发送到他们的个人资料)
我想向他们展示他们链接到我的应用程序的 Twitter 帐户。我怎样才能获得他们的 Twitter 用户的访问令牌?
感谢您的帮助。
I've a php application and successfully create a function to save access tokens and secrets in the database. (It's about sending specific content to their profile)
I want to show them which twitter account they linked to my application. How can I get their twitter user with access token?
Thanks for help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您获得访问令牌时,Twitter 还会返回 screen_name 和 user_id 变量。您可以使用这些而不是向
GET account/verify_credentials
发出额外请求When you get the access token Twitter also returns a screen_name and user_id variables. You can use those instead of making an additional request to
GET account/verify_credentials
使用这个代替:
然后获取用户名、名称和位置 -
Use this instead:
and then to get username, name, and location-