facebook的接口基础教程
https://developers.facebook.com/docs/graph-api/using-graph-api
获取user的某些信息的一个url之一
https://graph.facebook.com/{your-user-id}?fields=id,name&access_token={your-user-access-token}
这里id,name为你感兴趣的域,相关参考url
https://developers.facebook.com/docs/graph-api/reference/user/
在线测试的url
https://developers.facebook.com/tools/explorer/
一个实例
实例返回
{
"id": "805358200246392",
"name": "Yanfeng Peng",
"picture": {
"data": {
"height": 50,
"is_silhouette": false,
"url": "https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=805358200246392&height=50&width=50&ext=1607682159&hash=AeSJdYH-qitdZrZ42KI",
"width": 50
}
}
}