我看过Facebook api,我没有看到任何与创建日期相关的内容,但是我确实需要从大约1000个ID的列表中获取,所以手动获取此日期不会实际的。
有没有人可以想到的任何技巧来获得这个?
答案 0 :(得分:-1)
答案 1 :(得分:-1)
确实存在! Facebook的文档向您展示了如何执行此操作:https://developers.facebook.com/docs/graph-api/reference/page-start-date/
此页面也可能有所帮助: https://developers.facebook.com/docs/graph-api/reference/page-start-info/
您也可以在他们的Graph API Explorer中测试它: https://developers.facebook.com/tools/explorer/
在JavaScript中,使用Facebook API的2.11版,代码如下所示:
/* make the API call */
FB.api(
"...?fields={fieldname_of_type_PageStartDate}",
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);