Google の新しいゲーム サービスを使用してゲームをテストしています。テストのためにアカウントの実績をリセットしたいと考えています。
Google の API ( https://developers.google.com/games/services/management/api/#Achievements ) を使用して実績をリセットできることがわかり、OAuth 2.0 プレイグラウンドを使用して POST 要求を送信していますが、動いていない :(
具体的には、そのリンクで詳しく説明されているように、「 https://www.googleapis.com/games/v1management/achievements/reset 」の POST リクエストを送信しています。
そして、code.google com にアクセスして自分のサービスを確認すると、すべての Play サービスが「オン」になっています。
これが出力です。テストのために実績をリセットするにはどうすればよいですか? 私も近いですか?どうやら私の「アクセスが構成されていません」どうすればいいですか? アクセスを許可しない場合、OAuth2.0 プレイグラウンドの最初の 2 つのステップ全体のポイントは何でしたか?
HTTP/1.1 403 Forbidden
Content-length: 205
X-xss-protection: 1; mode=block
X-content-type-options: nosniff
X-google-cache-control: remote-fetch
-content-encoding: gzip
Server: GSE
Reason: Forbidden
Via: HTTP/1.1 GWA
Cache-control: private, max-age=0
Date: Sun, 19 May 2013 04:11:38 GMT
X-frame-options: SAMEORIGIN
Content-type: application/json; charset=UTF-8
Expires: Sun, 19 May 2013 04:11:38 GMT
{
"error": {
"errors": [
{
"domain": "usageLimits",
"reason": "accessNotConfigured",
"message": "Access Not Configured"
}
],
"code": 403,
"message": "Access Not Configured"
}
}