Facebook API, how to get relationship status of friends(single, married, etc…)?

前端 未结 3 1558
一生所求
一生所求 2021-01-21 06:06

could somebody help me with Facebook API, how to get relationship status of friends(single, married, etc...)?

Thanks for any help.

3条回答
  •  春和景丽
    2021-01-21 06:57

    Try this FQL in the Graph explorer tool

    fql?q=SELECT uid, name, relationship_status FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=me())

提交回复
热议问题