一通电话获取 Facebook 用户的详细信息和大头像

Get Facebook user's details and big profile picture in one call

我可以在一个电话中获得 /me 详细信息,包括 pictureemailname
但是URL返回的是一张极小的图片(50px*50px)。

我知道我可以通过以下方式进行额外调用以获得更大的图像:

.../me/picture?width=999

但是否可以将其与以下内容结合使用:

https://graph.facebook.com/v2.5/me?fields=id,relationship_status,picture,email,gender,first_name,last_name,significant_other

要在 一个 请求-响应而不是两个中接收所有这些信息?

给你:

https://graph.facebook.com/v2.6/me?fields=id,relationship_status,picture.width(999),email,gender,first_name,last_name,significant_other

您可以通过以下方式进行嵌套请求:

https://developers.facebook.com/docs/graph-api/using-graph-api#fieldexpansion