页面评级需要双因素身份验证
Page ratings require Two Factor Authentication
我正在使用 PHP SDK 获取不同页面的页面评级。我可以通过点击
从 facebook 上的应用程序页面获取评分
{page_id}/ratings
应用程序页面的端点。但是当我点击餐厅页面的相同端点时,我收到以下错误
Facebook\Exceptions\FacebookResponseException
(#200) User does not have sufficient administrative permission for this action on this page. If the page business requires Two Factor Authentication, the user also needs to enable Two Factor Authentication.
有人知道为什么会这样吗?
您只能使用相关主页的主页令牌获得您拥有的主页的评分。
事实证明问题与错误根本无关。
问题是我从我的代码中为第二页传递了错误的页面 ID
{page_id}\ratings
端点。
遇到此类错误的任何人,请检查您是否传递了正确的页面 ID 和页面访问令牌。
我正在使用 PHP SDK 获取不同页面的页面评级。我可以通过点击
从 facebook 上的应用程序页面获取评分{page_id}/ratings
应用程序页面的端点。但是当我点击餐厅页面的相同端点时,我收到以下错误
Facebook\Exceptions\FacebookResponseException (#200) User does not have sufficient administrative permission for this action on this page. If the page business requires Two Factor Authentication, the user also needs to enable Two Factor Authentication.
有人知道为什么会这样吗?
您只能使用相关主页的主页令牌获得您拥有的主页的评分。
事实证明问题与错误根本无关。
问题是我从我的代码中为第二页传递了错误的页面 ID
{page_id}\ratings
端点。
遇到此类错误的任何人,请检查您是否传递了正确的页面 ID 和页面访问令牌。