私のコードは以下の通りです。 URL短縮サービスは機能しますが、私が$POST
を挿入したときには機能しません。誰かがこのコードを見て修正する方法を知っていますか?Google API - URL短縮ツール
$longUrl = 'http://www.mysite.com/XXXXX/XX/'.$_POST['qrname'];
以下のように
// This is the URL you want to shorten
$longUrl = 'http://www.mysite.com/XXXXX/XX/$_POST['qrname']';
// Get API key from : http://code.google.com/apis/console/
$apiKey = 'MyAPIKey';
$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);
echo 'Shortened URL is: '.$json->id;
echo '短縮URLは:'です。$ json-> id;チェックの後に。 !できます 。 –
このコードはどこにあるのかわかりませんが、APIドキュメントにありますが、ありがとう! – Macbernie