谷歌缩短器是su

  • 本文关键字:su 谷歌 php goo.gl
  • 更新时间 :
  • 英文 :


所以我有一个小的PHP脚本来生成短链接,它可以工作,但有时我收到此错误:

未定义的属性: stdClass::$id","file":ShortLink.php","line":31

这是我的脚本:

<?php
class ShortLink {
public static function generateShortLink($longUrl)
{
    //This is the URL you want to shorten
    $apiKey = 'MY_API_KEY';
    //Get API key from : http://code.google.com/apis/console/
    $postData = array('longUrl' => $longUrl, 'key' => $apiKey);
    $jsonData = json_encode($postData);
    $curlObj = curl_init();
    curl_setopt($curlObj, CURLOPT_URL, 'https://www.googleapis.com/urlshortener/v1/url');
    curl_setopt($curlObj, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($curlObj, CURLOPT_SSL_VERIFYPEER, 0);
    curl_setopt($curlObj, CURLOPT_HEADER, 0);
    curl_setopt($curlObj, CURLOPT_HTTPHEADER, array('Content-type:application/json'));
    curl_setopt($curlObj, CURLOPT_POST, 1);
    curl_setopt($curlObj, CURLOPT_POSTFIELDS, $jsonData);
    $response = curl_exec($curlObj);
    //change the response json string to object
    $json = json_decode($response);
    curl_close($curlObj);
    return $json->id;
   }
 }

当我在 6 或 7 个月前开始使用这个脚本时,我没有这个错误,但现在我开始得到它,我不知道为什么,所以如果有人有任何想法,我将不胜感激。

更新:当我vardump我的$json时,我得到:

{ ["domain"]=> string(11) "usageLimits" ["reason"]=> string(26) "userRateLimitExceededUnreg" ["message"]=> string(40) "User Rate Limit Exceeded. Please sign up" ["extendedHelp"]=> string(36) "https://code.google.com/apis/console" } } ["code"]=> int(403) ["message"]=> string(40) "User Rate Limit Exceeded. Please sign up" }}

所以我想知道谷歌是否限制了谷歌缩短服务?

class ShortLink { 
public static function generateShortLink($longUrl)
{
    //This is the URL you want to shorten
    $apiKey = 'YOUR_SERVER_API_KEY';
    //Get API key from : http://code.google.com/apis/console/
    $postData = array('longUrl' => $longUrl, 'key' => $apiKey);
    $jsonData = json_encode($postData);
    $curlObj = curl_init();
    curl_setopt($curlObj, CURLOPT_URL, 'https://www.googleapis.com/urlshortener/v1/url');
    curl_setopt($curlObj, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($curlObj, CURLOPT_SSL_VERIFYPEER, 0);
    curl_setopt($curlObj, CURLOPT_HEADER, 0);
    curl_setopt($curlObj, CURLOPT_HTTPHEADER, array('Content-type:application/json'));
    curl_setopt($curlObj, CURLOPT_POST, 1);
    curl_setopt($curlObj, CURLOPT_POSTFIELDS, $jsonData);
    $response = curl_exec($curlObj);
    //change the response json string to object
    $json = json_decode($response);
    curl_close($curlObj);
    if(!is_object($json))  
    {  
        return(false);  
    }  
    return $json->id;
   }
}
$api = new ShortLink();
$shorturlid=$api->generateShortLink('http://avecsrthgdgnb.avcd');
echo $shorturlid;

您是否使用新的控制台,然后启用 URL 缩短器 API。

有时因为网络 curl 在 30 秒内没有返回响应(在 php 中默认时间限制,以便 cmd 完成)

尝试更改 php 中的时间限制.ini或者如果您无法控制,或者您不想为所有 php cmd 修改它,请在调用 curl_exec 之前尝试bool set_time_limit ( int $seconds )

更新:

我看到返回的 json 中没有 id 字段。

{ ["domain"]=> string(11) "usageLimits" 
  ["reason"]=> string(26) "userRateLimitExceededUnreg" 
  ["message"]=> string(40) "User Rate Limit Exceeded. Please sign up" 
  ["extendedHelp"]=> string(36) "https://code.google.com/apis/console" 
} 
}  
  ["code"]=> int(403) 
  ["message"]=> string(40) "User Rate Limit Exceeded. Please sign up" 
}
}

如果您仔细发现您的用户速率限制已达到,请参阅此处了解有关使用谷歌 API 的限制的详细信息。(您可以尝试不同的IP,即不同的机器或不同的api密钥,相同的代码可能会开始工作)。

希望这有帮助

相关内容

  • 没有找到相关文章

最新更新