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 に答える