Yii2.0 restfut接口认证错误出坑指南

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Yii2.0 restfut接口认证错误出坑指南相关的知识,希望对你有一定的参考价值。

测试Yii2.0即接口认证功能(出坑指南):
//认证

bindValTap: function () {
var page = this;
wx.request({
url: ‘http://apitest.test/invmembers?access-token=rg1v5BF7OBGE4Bze562wZSUfiStakUK_‘,
header: {
‘content-type‘: ‘application/json‘
},
method: ‘get‘,
data: {
‘per-page‘: 6,
// page: 5
},
success: function (res) {
// page.setData({motto:res.data[0].name});
console.log(res.data);
}
})
},

出现Yii2.0 restfut接口认证错误:Your request was made with invalid

研究了很久,后来找到vendoryiisoftyii2filtersauthQueryParamAuth.php

class QueryParamAuth extends AuthMethod
{
/**

  • @var string the parameter name for passing the access token
    */
    public $tokenParam = ‘access-token‘;

    /**

  • @inheritdoc
    */
    public function authenticate($user, $request, $response)
    {
    $accessToken = $request->get($this->tokenParam);
    if (is_string($accessToken)) {
    $identity = $user->loginByAccessToken($accessToken, get_class($this));
    if ($identity !== null) {
    return $identity;
    }
    }
    if ($accessToken !== null) {
    $this->handleFailure($response);
    }

    return null;

    }
    }

才发现传递的参数是access-token,而不是access_token!

以上是关于Yii2.0 restfut接口认证错误出坑指南的主要内容,如果未能解决你的问题,请参考以下文章

indexDB出坑指南

Android JNI出坑指南

Android JNI出坑指南

安装robot.js踩坑记录含出坑指南

Yii2.0中rules验证的调试

Spring Security 接口认证鉴权入门实践指南