我是此页面的管理员
http://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.westberks.gov.uk%2Findex.aspx%3Farticleid%3D23789
我还指定我的应用程序也可以管理它。我喜欢这个页面,所以我认为我应该能够访问该页面的管理屏幕,但我似乎无法访问。关于如何访问 FB 中此页面的管理屏幕,以便我可以手动发布更新,有什么想法吗?
此外,当我尝试以编程方式更新页面时,我收到消息
(OAuthException)(#200)用户尚未授权应用程序执行此操作
,但页面在此处列出了我的应用程序
http://graph.facebook.com/10150303466842688
I'm an Admin for this page
http://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.westberks.gov.uk%2Findex.aspx%3Farticleid%3D23789
and I've also specified that my App can administer it too. I've Liked this page so I thought I should be able to access the admin screen for the page but I can't seem to. Any ideas on how I access the admin screen for this page in FB, so I can manually publish updates?
Additionally, when I try to update page programmatically I get the message
(OAuthException) (#200) The user hasn't authorized the application to perform this action
but the page has my App listed here
http://graph.facebook.com/10150303466842688
发布评论
评论(2)
这绝对是一个错误,而不是编程或设置问题。 Facebook 已将该错误标记为已修复,截至 2012 年 1 月 18 日,现在一切正常!错误报告:
http://developers.facebook.com/bugs/308356579205492?browse=search_4f0f1475c470b2076799347
在最近的修复之前,存在 OpenGraph 页面不允许这些页面的管理员检索页面的问题他们的访问令牌。这意味着他们被禁止“作为页面”发布,并且显然也被禁止进入他们自己页面的管理区域。
我知道这个错误修复现在已经为我解决了,希望其他人也能解决这个问题。
This was definitely a bug rather than a programming or setup issue. The bug has been marked fixed by Facebook as of 1/18/2012 and everything now works as it is supposed to! Bug report:
http://developers.facebook.com/bugs/308356579205492?browse=search_4f0f1475c470b2076799347
Until this recent fix, there was a problem where OpenGraph pages did NOT allow the admins of those pages to retrieve page access tokens for them. Which means they were locked out of posting "as the page" and apparently also locked out of the Admin area for their own pages as well.
I know that this is fixed for me now with this bugfix, and hopefully it will also be fixed for everyone else.
您需要请求
manage_pages
、read_stream
和publish_stream
。一旦您的管理员接受这些权限,应用程序就可以在图表上调用me/accounts
(在此处播放 https://developers.facebook.com/tools/explorer)。其中将有他们管理的所有页面的列表。每个列表中都有一个唯一的访问令牌。这称为页面访问令牌。使用该令牌,您应该能够读取和写入该页面的me/feed
。You will need to ask for
manage_pages
,read_stream
andpublish_stream
. Once your admin accepts those permissions, the app can callme/accounts
on the Graph (play here https://developers.facebook.com/tools/explorer). In there will be a list of all the pages they admin. In each listing will be a unique access token. This is called the page access token. Using that token you should be able to read and write to theme/feed
for that page.