0

facebook グラフ API を使用して検索すると (このリンクを使用)、

graph.facebook.com/search?q=chinmay patel&type=user&fields=name,id,username,work, 

作業を戻すことはありません。ここに私が得る結果があります、

{
  "data": [
    {
      "name": "Chinmay Patel", 
      "id": "100001500767227", 
      "username": "chinmayrp"
    }, 
    {
      "name": "Chinmay Patel", 
      "id": "100000896291228", 
      "username": "chinmay99"
    }, 
    {
      "name": "Chinmay Patel", 
      "id": "100003158872381", 
      "username": "chinmay.patel.9081"
    }, ..... 
    {
      "name": "Chinmay Patel", 
      "id": "1007030149", 
      "username": "CPoverLord"
    }, 
    {
      "name": "Chinmay Patel", 
      "id": "1150758330", 
      "username": "chinmay.patel.71"
    }, 
    {
      "name": "Chinmay Patel", 
      "id": "100004835978500", 
      "username": "chinmay.patel.90834"
    }
  ], 
  "paging": {
    "next": "https://graph.facebook.com/search?fields=name,id,username,work&q=chinmay patel&type=user&limit=25&offset=25&__after_id=100004835978500"
  }
}

何か不足していますか?他にご不明な点がございましたら、お気軽にお問い合わせください。

4

1 に答える 1

2

workは公開プロフィール フィールドではありません。user_work_historyユーザーはアプリをインストールして許可を発行する必要があります。または、ユーザーはアプリをインストールして発行されたユーザーの友人である必要がありますfriends_work_history

https://developers.facebook.com/docs/reference/api/user/

于 2013-06-09T23:16:53.243 に答える