我目前正在开发一个从客户的Facebook页面获取各种数据的javascript项目,以便它可以显示在客户的网站上。
该项目的一个要求是,它还可以获取显示客户Facebook页面上当前活动的所有商品。
我已经挖掘了Open Graph API文档,Facebook正在列出两个不同的端点,以便从Facebook页面访问优惠。
我试过了/{PAGEID}/nativeoffers
,但这只是给了我一个空洞的回应
我也试过了/{PAGEID}/offers_v3
,但我得到以下错误回复:
{
"error": {
"message": "(#3) User must be on whitelist",
"type": "OAuthException",
"code": 3,
"fbtrace_id": "BV8zwWvE7Gv"
}
}
因此,我有两个问题:
/nativeoffers
或/offers_v3
?/offers_v3
列入白名单?在Open Graph API文档中,描述如下:Entity to describe an offer. One needs to be whitelisted to use this API. Please contact the support group and ask them to reach out to the team that is responsible for this API to request to be whitelisted.
非常感谢任何帮助!