真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Yii2.0restfut接口認證錯誤出坑指南

測試Yii2.0即接口認證功能(出坑指南):
//認證

創(chuàng)新互聯(lián)是一家專業(yè)提供科爾沁企業(yè)網(wǎng)站建設,專注與成都網(wǎng)站建設、成都網(wǎng)站設計、H5場景定制、小程序制作等業(yè)務。10年已為科爾沁眾多企業(yè)、政府機構等服務。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡公司優(yōu)惠進行中。

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);
}
})
},

出現(xiàn)Yii2.0 restfut接口認證錯誤:Your request was made with invalid

研究了很久,后來找到\vendor\yiisoft\yii2\filters\auth\QueryParamAuth.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;

    }
    }

才發(fā)現(xiàn)傳遞的參數(shù)是access-token,而不是access_token!


網(wǎng)站欄目:Yii2.0restfut接口認證錯誤出坑指南
文章轉載:http://weahome.cn/article/ghsgsi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部