douzhang1852 2018-10-26 06:24
浏览 456
已采纳

使用承载令牌在Twitter API中获取用户信息

I am using twitter API in my Laravel application. In my app I want to get user name and profile picture when user insert url by. I searched lot but couldn't found. For user info I had to make user login to twitter and connect with my app for access token. I want to use App authorization only so user don't need to login twitter. I found that with Bearer token tweets can be search with this search API

https://api.twitter.com/1.1/search/tweets.json?q=twitterapi

Is there any API's that I can get User screen name using URL?

I know there may be posts that are similar with this, most answers with usl says "This page doesn't exists" or saying to use Oauth.

Thanks in advance.

  • 写回答

2条回答 默认 最新

  • dongluan5740 2018-12-14 08:57
    关注

    Ah, I was so lazy to read whole documentation.
    Here is everything about App-only authentication. All you need to do is firstly encode consumer key and secret in RFC 1738 and then re-encode them in

    Base64 "RFC-1738-encoded-consumer-key:RFC-1738-encoded-consumer-secret"
    

    format. You will get bearer token credentials like

    eHZ6MWV2RlM0d0VFUFRHRUZQSEJvZzpMOHFxOVBaeVJnNmllS0dFS2hab2xHQzB2SldMdzhpRUo4OERSZHlPZw== this.

    Now you all you need to do is get bearer token with post request with

    https://api.twitter.com/oauth2/token?grant_type=client_credentials this URL.

    Be sure to set header with

    Authorization: Basic bearer-token-credentials
    Content-Type: application/x-www-form-urlencoded
    Content-Length: 29 
    

    and you will get Bearer Token in json format.

    Now with every request, just send this bearer token in header like

    Authorization: Bearer bearer-token
    

    and you can get data which doesn't require user authentication. For example, if you want to get User data by screen name or id, just send post request in https://api.twitter.com/1.1/users/show.json?screen_name=here-comes-twitter-screen-name URL.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题