1

我想使用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;
4

2 回答 2

1

你也可以试试这个shell_exec()功能:

$cmd = "curl -u andrew.lunny@nitobi.com -X POST "" https://build.phonegap.com/token";
$out = shell_exec($cmd);
$data = json_decode($out);
于 2012-11-26T14:31:24.580 回答
0

我找到了解决方案。

我的本地主机设置有一些问题。当我在网络服务器上上传代码时,它开始工作。

于 2012-09-04T22:20:28.613 回答