让我的oAuth POST请求返回可行的响应时遇到一些麻烦。任何想法都将不胜感激。
$request = $provider->getAuthenticatedRequest(
'POST',
'https://graph.microsoft.com/v1.0/me/calendar/events',
$_SESSION['access_token'],
['body' =>
json_encode([
'Id' => null,
'Subject' => 'Test 54575',
'Start' => [
'DateTime' => '2016-11-17T02:00:00',
'TimeZone' => 'W. Europe Standard Time'
],
'End' => [
'DateTime' => '2016-11-17T04:00:00',
'TimeZone' => 'W. Europe Standard Time'
],
'Body' => [
'ContentType' => 'Text',
'Content' => 'estruyf'
],
'IsReminderOn' => false
])
]
);
$response = $provider->getResponse($request);
错误:
Fatal error: Uncaught UnexpectedValueException: Failed to parse JSON response: Syntax error in C:\projects\agentprocal\vendor\league\oauth2-client\src\Provider\AbstractProvider.php:663 Stack trace: #0 C:\projects\agentprocal\vendor\league\oauth2-client\src\Provider\AbstractProvider.php(704): League\OAuth2\Client\Provider\AbstractProvider->parseJson(NULL) #1 C:\projects\agentprocal\vendor\league\oauth2-client\src\Provider\AbstractProvider.php(643): League\OAuth2\Client\Provider\AbstractProvider->parseResponse(Object(GuzzleHttp\Psr7\Response)) #2 C:\projects\agentprocal\index.php(58): League\OAuth2\Client\Provider\AbstractProvider->getResponse(Object(GuzzleHttp\Psr7\Request)) #3 {main} thrown in C:\projects\agentprocal\vendor\league\oauth2-client\src\Provider\AbstractProvider.php on line 663
我在创建令牌或请求数据方面没有任何问题。如果有人需要任何进一步的信息,请不要犹豫。谢谢!
(使用"联盟/ oauth2-client":" ^ 1.4")
答案 0 :(得分:2)
最后纠正答案
<强>问题强>
我目前正在查看该课程AbstractProvider
内部,而您似乎在供应商中找到了该作品:
protected function parseJson($content) {
$content = json_decode($content, true);
if (json_last_error() !== JSON_ERROR_NONE) { // ! here that problem occurs
throw new UnexpectedValueException(sprintf(
"Failed to parse JSON response: %s",
json_last_error_msg()
));
}
return $content;
}
抛出一个异常,说解析JSON有一些问题,因为在另一个函数中我们有:
protected function parseResponse(ResponseInterface $response) {
$content = (string) $response->getBody();
$type = $this->getContentType($response);
if (strpos($type, 'urlencoded') !== false) { // ! here he checks header
parse_str($content, $parsed);
return $parsed;
}
// Attempt to parse the string as JSON regardless of content type,
// since some providers use non-standard content types. Only throw an
// exception if the JSON could not be parsed when it was expected to.
try {
return $this->parseJson($content);
} catch (UnexpectedValueException $e) { // ! here it catch
if (strpos($type, 'json') !== false) { // ! again he checks header
throw $e; // ! and here it throw
}
return $content;
}
}
<强>解决方案强>
看起来你没有设置正确的标题。
所以,如果您在请求中添加类似于:
的内容$options['header']['Content-Type'] = 'application/x-www-form-urlencoded';
它应该有用,因为它只返回一个字符串,而不是在json_decode()
方法中尝试protected function parseJson($content)
。
在您的代码中,它将如下所示:
$request = $provider->getAuthenticatedRequest(
'POST',
'https://graph.microsoft.com/v1.0/me/calendar/events',
$_SESSION['access_token'],
['body' =>
json_encode([
'Id' => null,
'Subject' => 'Test 54575',
'Start' => [
'DateTime' => '2016-11-17T02:00:00',
'TimeZone' => 'W. Europe Standard Time'
],
'End' => [
'DateTime' => '2016-11-17T04:00:00',
'TimeZone' => 'W. Europe Standard Time'
],
'Body' => [
'ContentType' => 'Text',
'Content' => 'estruyf'
],
'IsReminderOn' => false
]),
'header' => [
'Content-Type' => 'application/x-www-form-urlencoded', // set header
],
],
);
$response = $provider->getResponse($request);
如果您想在 JSON 中获得回复,则应将标题设置为:
$options['header']['Accept'] = `application/json`;
$options['header']['Content-Type'] = `application/json`;
它会在你的代码中看起来像:
$request = $provider->getAuthenticatedRequest(
'POST',
'https://graph.microsoft.com/v1.0/me/calendar/events',
$_SESSION['access_token'],
['body' =>
json_encode([
'Id' => null,
'Subject' => 'Test 54575',
'Start' => [
'DateTime' => '2016-11-17T02:00:00',
'TimeZone' => 'W. Europe Standard Time'
],
'End' => [
'DateTime' => '2016-11-17T04:00:00',
'TimeZone' => 'W. Europe Standard Time'
],
'Body' => [
'ContentType' => 'Text',
'Content' => 'estruyf'
],
'IsReminderOn' => false
]),
'header' => [
'Content-Type' => 'application/json', // set content type as JSON
'Accept' => 'application/json', // set what you expect in answer
],
],
);
$response = $provider->getResponse($request);
<强>更新强>
在我们聊天对话后,我们得到了一个解决方案。问题是标题和正确的代码是:
$body = [
'Id' => null,
'Subject' => 'Test 54575',
'Start' => [
'DateTime' => '2016-11-17T02:00:00',
'TimeZone' => 'W. Europe Standard Time'
],
'End' => [
'DateTime' => '2016-11-17T04:00:00',
'TimeZone' => 'W. Europe Standard Time'
],
'IsReminderOn' => false
];
$options['body'] = json_encode($body);
$options['headers']['Content-Type'] = 'application/json;charset=UTF-8';
$request = $provider->getAuthenticatedRequest(
'POST',
'https://graph.microsoft.com/v1.0/me/calendar/events',
$_SESSION['access_token'],
$options
);
$response = $provider->getResponse($request);