根据Facebook的Open Graph API文档(https://developers.facebook.com/docs/sharing/opengraph/object-api/),您应该能够列出与您的应用程序关联的对象:
https://graph.facebook.com/app/objects/$OBJECT_TYPE?access_token=$APP_ACCESS_TOKEN
但是,当我尝试使用
列出我的应用程序的Open Graph文章时https://graph.facebook.com/app/objects/article?access_token=$APP_ACCESS_TOKEN
我得到一个空数组。另外,我在对象浏览器页面(https://developers.facebook.com/tools/object-browser)上收到错误说明:
There are no Object Types configured for this app.
我已将Open Graph作为产品添加到应用程序中,并且使用fb:app_id元标记使用我的应用程序创建了许多对象,如下所示:
<meta property="fb:app_id" content="MY_APP_ID">
除了将fb:app_id元标记添加到页面之外,是否还有其他我需要做的事情才能将OG对象与应用程序相关联或启用Open Graph对象?