从 facebook 获取图片和文字 post

Getting image and text from facebook post

是否可以在代码中 extract/get 来自 Facebook post 的图像和描述?

假设我们有一个 public post https://www.facebook.com/rihanna/photos/a.207477806675.138795.10092511675/10154095214621676/?type=3&theater

我们能否通过在代码中使用 Facebook sdk extract/get 特定 post 的图像和描述(获取新的舞蹈混音...)?

提前致谢

是的,这是可能的。您可以通过 GET 请求和照片 ID(在您的例子中是 10154095214621676)访问图表 API。只要照片来自 public 页面,您就可以调用不同的参数,例如 name(描述)、picture(小图片)等。

你可以玩玩Graph API Explorer to figure out what exactly you need. For a more detailed information on the possible parameters you might want to have a look into the Facebook Developers Documentation。在那里您还可以找到一些示例如何处理不同 SDK 中的请求。

同意特罗塔的观点。

像这样https://developers.facebook.com/tools/explorer/145634995501895?method=GET&path=10154095214621676%3Ffields%3Dpicture%2Cname%2Calbum%2Cimages&version=v2.9

您可以获得 post 的所有信息。