How to retrieve user country using facebook Graph API?

前端 未结 4 1133
南旧
南旧 2020-12-30 03:13

I want to retrieve the logged in user country, and insert it into a div. I succeed making it with the user Name, Gender and Age range, but somewhy I can\'t retrieve the coun

4条回答
  •  [愿得一人]
    2020-12-30 03:27

    v2.11 query:

    /me?fields=hometown,location
    

    permission:

    user_hometown
    user_location
    

    result:

    {
      "hometown": {
        "id": "XXXXREDACTED",
        "name": "Manila, Philippines"
      },
      "location": {
        "id": "XXXXREDACTED",
        "name": "Manila, Philippines"
      },
      "id": "XXXXREDACTED"
    }
    

提交回复
热议问题