5

我想使用Google URL Shortener API。现在,我需要向 Google API 发送一个 JSON POST 请求。

我在 PHP 中使用 Guzzle 6.2。

这是我到目前为止所尝试的:

$client = new GuzzleHttp\Client();
$google_api_key =  'AIzaSyBKOBhDQ8XBxxxxxxxxxxxxxx';
$body = '{"longUrl" : "http://www.google.com"}';
$res = $client->request('POST', 'https://www.googleapis.com/urlshortener/v1/url', [
      'headers' => ['Content-Type' => 'application/json'],
      'form_params' => [
            'key'=>$google_api_key
       ],
       'body' => $body
]);
return $res;

但它返回以下错误:

Client error: `POST https://www.googleapis.com/urlshortener/v1/url` resulted in a `400 Bad Request` response:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "parseError",
"message": "Parse Error"
}
(truncated...)

任何帮助将不胜感激。我已经阅读了 Guzzle 文档和许多其他资源,但没有帮助!

4

3 回答 3

4

您不需要form_params,因为 Google 需要简单的 GET 参数,而不是 POST(您甚至不能这样做,因为您必须在正文类型之间进行选择:form_params创建application/x-www-form-urlencoded正文,body参数创建原始正文)。

所以只需替换form_paramsquery

$res = $client->request('POST', 'https://www.googleapis.com/urlshortener/v1/url', [
    'headers' => ['Content-Type' => 'application/json'],
    'query' => [
        'key' => $google_api_key
    ],
    'body' => $body
]);

// Response body content (JSON string).
$responseJson = $res->getBody()->getContents();
// Response body content as PHP array.
$responseData = json_decode($responseJson, true);
于 2016-08-30T09:00:58.837 回答
0

我无法发出帖子请求,情况并不完全相同,但我在这里写下我的解决方案以防万一:

我需要使用像“request_data”这样的密钥发送一个发布请求,我试图按照 Guzzle 文档所说的那样做:

 $r = $client->request('PUT', 'http://test.com', [
'form_data' => ['request_data' => 'xxxxxxx']
 ]);

结果是这样的:

{'request_data':....}

但我想要的是这样的:

 'request_data': {}

所以我最终弄清楚的是这样做:

    $client = new Client();

    $response = $client->request('POST', $url, [
        'body' => "request_data=" . json_encode([$yourData]),
        'headers' => [
            'Content-Type' => 'application/x-www-form-urlencoded'
        ]
    ]);

这样做结果是我所期望的。

于 2020-02-13T18:12:53.177 回答
-1

手册说如下:

获得 API 密钥后,您的应用程序可以将查询参数 key=yourAPIKey 附加到所有请求 URL。

尝试将 `"key=$google_api_key" 附加到您的网址。

于 2016-08-29T06:59:33.660 回答