我想使用https://build.phonegap.com/docs/api上的 API 构建 phonegap 应用程序
它需要运行以下 curl 命令,该命令将返回一个令牌。
$ curl -u andrew.lunny@nitobi.com -X POST "" https://build.phonegap.com/token
这个 curl 语句在命令行上为我工作。我想在 php 中使用它。我尝试了下面给出的 php 代码,但它不起作用。
$username = "USERNAME@gmail.com";
$password = "PASSWORD";
$target_url = "https://build.phonegap.com/token"
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $target_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, '');
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
$result = curl_exec($ch);
curl_close ($ch);
echo $result;