パートナー プログラムを介して Google+ Pages API にアクセスでき、自分のドメイン アカウントに投稿しようとしています。ドメイン アカウントを介して管理しているページに投稿したり、個人の G+ ページに投稿したりできますが、ドメインの G+ アカウントに投稿すると、次のエラーが表示され続けます。
"error": {
"errors": [
{
"domain": "global",
"reason": "required",
"message": "Calls to this method must be made by or on behalf of a Google+ Page."
}
],
"code": 400,
"message": "Calls to this method must be made by or on behalf of a Google+ Page."
}
}
すべてのスコープが含まれていることを確認しました。テストするために、Google が提供するコマンド ラインの例を使用しています。
curl -v -H "Content-Type: application/json" -H "Authorization: OAuth <access token for Google+ Page>" -d "{'object':{'content':'Test message'}}" -X POST https://www.googleapis.com/plusPages/v2/people/<pageid>/activities
なぜこれが起こるのか誰にも分かりますか?