我为 Laravel Socialite 创建了一个自定义 Provider。身份验证部分进展顺利,直到我尝试调用用户方法。
不知道出了什么问题。 wunderlist 中的方法文档
我的代码:
/**
* {@inheritdoc}
*/
protected function getUserByToken($token)
{
$response = $this->getHttpClient()->get('https://a.wunderlist.com/api/v1/users', [
'X-Access-Token: ' . $token . ' X-Client-ID: ' . $this->clientId
]);
return json_decode($response->getBody(), true);
}
我收到以下错误:
InvalidArgumentException in MessageFactory.php line 202:
allow_redirects must be true, false, or array
我错过了选项数组中的东西吗?
乔斯