使用Phonegap Build API上传和构建

时间:2015-08-10 10:26:58

标签: cordova wget phonegap-build

我正在尝试将内容自动上传到Phonegap Build服务器。但是,我面临一些问题。

构建API页面有两组身份验证(很好)。一个是令牌,另一个是http-auth。

这对我来说真的不那么好:

wget --user=XXX --password=XXX https://build.phonegap.com/token

HTTP request sent, awaiting response... 404 Not Found
2015-08-10 12:21:44 ERROR 404: Not Found.

使用其他方法

wget --user=XXX --password=XXX https://build.phonegap.com/api/v1/me

HTTP request sent, awaiting response... 401 Unauthorized
Reusing existing connection to build.phonegap.com:443.
HTTP request sent, awaiting response... 200 OK
Length: 629 [application/json]

第二个例子给了我一大块带有内嵌指针的json应用程序,密钥等。这很好,但是我没有auth密钥,我需要能够发布上传构建内容。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

/token端点需要POST请求(doc):

wget --user=XXX --password=XXX --post-data="" https://build.phonegap.com/token