Facebookのオープングラフの実績を登録しようとしていますが、うまくいきません。
次のようにアプリ アクセス トークンを取得します。
https://graph.facebook.com/oauth/access_token?client_id=APP_ID&client_secret=SECRET&grant_type=client_credentials
HTML ページは次のようになります。
<html>
<head>
<meta property="og:type" content="game.achievement"/>
<meta property="og:title" content="TITLE"/>
<meta property="og:description" content="DESCRIPTION"/>
<meta property="og:url" content="URL/testAchivement.html"/>
<meta property="og:image" content="URL_TO_IMAGE"/>
<meta property="game:points" content="10"/>
<meta property="fb:app_id" content="APP_ID"/>
<title>ACHIEVEMENT!</title>
</head>
<body>
</body>
</html>
私はこれを使用します:
https://graph.facebook.com/APP_ID/achievements?achievement=MYSERVER/testAchivement.html&display_order=2&access_token=APP_ACCESS_TOKEN
この応答を取得します。
{
"data": [
]
}
Facebook デバッグ ツールを使用してもエラーは発生しません。
助けてください、ありがとう!