1

我正在尝试按照本指南从命令行使用 Google Predict:http: //thoughts.inphina.com/2010/10/17/getting-started-with-google-prediction-api-machine-learning- on-cloud/ 不幸的是,我无法使用以下命令通过身份验证:

1) 将返回 SID、LSID、Auth 令牌 - 最后一个将用于 2)

curl -X POST \
  -d accountType=HOSTED_OR_GOOGLE \
  -d Email=<mail> \
  --data-urlencode Passwd=<password> \
  -d service=xapi \
  -d source=account \
  -H "Content-Type:application/x-www-form-urlencoded" \
  https://www.google.com/accounts/ClientLogin

2)试图触发训练,会给我一个 401 响应。

curl -X POST \
    -H "Content-Type:application/json" \
    -H "Authorization: GoogleLogin auth=<auth-token>" \
    -d "{\"data\":{}}" \
    https://www.googleapis.com/prediction/v1.5/training?data=<bucket>%2F<file>

有什么建议么?

干杯。

4

1 回答 1

0

事实证明,使用OACurl更容易,这里也有更好的文档记录

干杯。

于 2012-06-28T06:19:23.217 回答