github 第三方登录 url 参数 ?access_token= 不能继续使用

  • 应该是从三月份就不能用了,使用的时候github给发了邮件提醒:
    On March 25th, 2020 at 03:17 (UTC) your application (xxxxxxxxxx) used an access token (with the User-Agent okhttp/3.14.1) as part of a query parameter to access an endpoint through the GitHub API:
    https://api.github.com/user
    Please use the Authorization HTTP header instead as using the access_token query parameter is deprecated.
    Depending on your API usage, we’ll be sending you this email reminder on a monthly basis.
    Visit https://developer.github.com/changes/2020-02-10-deprecating-auth-through-query-param for more information about suggested workarounds and removal dates.
    Thanks,
    The GitHub Team

  • 点进去发现必须要用这种格式:

      curl -H 'Authorization: token my_access_token' https://api.github.com/user/repos
    

    自己用的是okHttp怎么解决呢

解决办法:
  • curl -H 表示添加http请求的头部,只需要在okhttp的get请求添加头部header()
    如下:

      Request request = new Request.Builder()
              .url("https://api.github.com/user")
              .header("Authorization","token "+accessToken)
              .build();
    

自己比较菜,因为这个问题浪费好多时间,不过也算是有所收获吧,如果这篇博客帮助到其他同学记得点个赞。

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值