Google Short URL API:禁止使用

时间:2015-06-22 03:41:53

标签: php rest google-url-shortener

我有认为正确编写的代码,但每当我尝试调用它时,我都会被Google拒登。

file_get_contents(https://www.googleapis.com/urlshortener/v1/url): failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden

这不是一个速率限制或任何我目前零使用过的......

我原本以为这是由于API密钥不正确,但我已经多次尝试重置它。首次应用API时,有没有一些停机时间?

或者我错过了标题设置还是其他什么东西一样小?

public function getShortUrl()
{
    $longUrl = "http://example.com/";
    $apiKey = "MY REAL KEY IS HERE";

    $opts = array(
        'http' =>
            array(
                'method'  => 'POST',
                'header'  => "Content-type: application/json",
                'content' => json_encode(array(
                    'longUrl' => $longUrl,
                    'key'     => $apiKey
                ))
            )
    );

    $context = stream_context_create($opts);

    $result = file_get_contents("https://www.googleapis.com/urlshortener/v1/url", false, $context);

    //decode the returned JSON object
    return json_decode($result, true);
}

1 个答案:

答案 0 :(得分:1)

我似乎需要手动指定URL中的密钥

$result = file_get_contents("https://www.googleapis.com/urlshortener/v1/url?key=" . $apiKey, false, $context);

这现在有效。关于API如何检查POST(或者没有这样做),必须有一些有趣的东西。

编辑:对于将来的任何人来说,这是我的完整功能

public static function getShortUrl($link = "http://example.com")
{
    define("API_BASE_URL", "https://www.googleapis.com/urlshortener/v1/url?");
    define("API_KEY", "PUT YOUR KEY HERE");

    // Used for file_get_contents
    $fileOpts = array(
        'key'    => API_KEY,
        'fields' => 'id' // We want ONLY the short URL
    );

    // Used for stream_context_create
    $streamOpts = array(
        'http' =>
            array(
                'method'  => 'POST',
                'header'  => [
                    "Content-type: application/json",
                ],
                'content' => json_encode(array(
                    'longUrl' => $link,
                ))
            )
    );

    $context = stream_context_create($streamOpts);
    $result = file_get_contents(API_BASE_URL . http_build_query($fileOpts), false, $context);

    return json_decode($result, false)->id;
}