gpt4 book ai didi

php - Google API - 使用 PHP 的 URL 缩短器

转载 作者:IT王子 更新时间:2023-10-28 23:57:46 25 4
gpt4 key购买 nike

我的代码如下。 URL 缩短服务有效,但当我插入 $POST 时它不起作用。有谁知道如何通过查看代码来解决这个问题?

// 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;

最佳答案

尝试如下

$longUrl = 'http://www.mysite.com/XXXXX/XX/'.$_POST['qrname'];

以上方法都可以。

关于php - Google API - 使用 PHP 的 URL 缩短器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13066919/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com