2

Facebookでページを作成し、グラフAPIを使用してタイムラインに投稿しています。これらの投稿は、管理者である私にとっては問題なく表示されますが、ユーザーにとってはページが空です。

グラフAPIエクスプローラーで確認しました。管理者として、/NewsCrier/feed の GET にデータが入力されます。

管理者以外のユーザーとして、同じリクエストが返されます

{
  "data": [  ]
}

これは私の管理者ユーザーの応答からの投稿の例です。プライバシーが公開に設定されていることに注意してください。

{
  "id": "383422711781035_404880726301900", 
  "from": {
    "category": "Community", 
    "name": "News Crier", 
    "id": "383422711781035"
  }, 
  "message": "This appears to be the DC shooter, Aaron Alexis", 
  "picture": "https://fbexternal-a.akamaihd.net/safe_image.php?d=AQD4wR0Y9UVbb4Js&w=154&h=154&url=http%3A%2F%2Fwww.justmugshots.com%2Fimg%2F814064%2Flg%2Faaron-alexis.jpg", 
  "link": "http://www.justmugshots.com/texas/fort-worth/814064", 
  "name": "Aaron Alexis, Arrested on 2010-09-04", 
  "caption": "www.justmugshots.com", 
  "description": "Aaron Alexis was arrested in Fort Worth, Texas on 2010-09-04. See the mugshot now.", 
  "icon": "https://fbstatic-a.akamaihd.net/rsrc.php/v2/yD/r/aS8ecmYRys0.gif", 
  "actions": [
    {
      "name": "Comment", 
      "link": "https://www.facebook.com/383422711781035/posts/404880726301900"
    }, 
    {
      "name": "Like", 
      "link": "https://www.facebook.com/383422711781035/posts/404880726301900"
    }
  ], 
  "privacy": {
    "description": "Public", 
    "value": "EVERYONE", 
    "friends": "", 
    "networks": "", 
    "allow": "", 
    "deny": ""
  }, 
  "type": "link", 
  "status_type": "shared_story", 
  "application": {
    "name": "Reddit News Alerts", 
    "id": "693375074022011"
  }, 
  "created_time": "2013-09-16T19:36:07+0000", 
  "updated_time": "2013-09-16T19:36:07+0000"
}
4

1 に答える 1

2

問題は、Facebook アプリがサンドボックス モードになっていることです。アプリをサンドボックスから取得するとすぐに、すべてのユーザーが新しく作成された投稿を表示します;)

于 2013-09-16T21:59:17.627 に答える