PHP oAuth POST requests


PHP oAuth POST requests

让我的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")

正确答案在最后

我目前正在查看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;
    }
}
<<p> 解决方案/strong>

看起来你没有设置正确的标题

所以如果你在请求中添加如下内容:

$options['header']['Content-Type'] = 'application/x-www-form-urlencoded';

它应该工作,因为它只会返回一个字符串,而不会尝试在protected function parseJson($content)方法中json_decode()

在你的代码中,它看起来像这样:
$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);