本文介绍了从2013年2月6日起,通过“feed”连接发送到朋友的墙上,使用Graph API的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的应用程式开始未能在朋友的资讯提供上发布商品。
我收到这个错误:

My app started failing to post items on friends' feeds.I am getting this error:

Facebook request error: The operation couldn’t be completed.
(facebookErrDomain error 10000.), details: Error Domain=facebookErrDomain Code=10000 "The operation couldn’t be completed. (facebookErrDomain error 10000.)" UserInfo=0xa26e990 {error={
    code = 200;
    message = "(#200) Feed story publishing to other users is disabled for this application";
    type = OAuthException;
}}

我没有更改任何应用程序。也许与Facebook升级有关?
这些是我连接到Facebook的权限:

I didn't change anything in the app. Maybe it is related with Facebook upgrade?These are the permissions that I connect to Facebook with:

[appDelegate.facebook authorize:[NSArray arrayWithObjects:@"publish_stream", @"friends_birthday", nil]];


推荐答案

是的,这是个月前,并于2013年2月6日生效:

Yes, this was announced months ago and took effect on Feb 6th 2013:

解决方法是使用,允许用户发布相同的内容,但选择要发布的用户。

The workaround is to use the Feed Dialog which allows users to post the same content, but choose the user they want to post it to.

这篇关于从2013年2月6日起,通过“feed”连接发送到朋友的墙上,使用Graph API的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 11:30