0

嗨,我在 facebook 中创建了一个具有离线访问权限的新应用程序。当我发布未显示墙信息操作链接参数时,应用程序工作正常

如何解决它......

还有一个问题,当我发布一些 id 没有发布的信息时,异常错误处理显示消息:FacebookErrorResponseException:达到应用程序请求限制

如何解决它....

4

1 回答 1

0

使用 codeplex.com 上提供的 facebook API 并尝试一下,

        Facebook.Rest.attachment_media_image image1 = new attachment_media_image();

        image1.href = "";
        image1.src = "";

        Facebook.Rest.attachment a = new Facebook.Rest.attachment();
        a.media = new List<Facebook.Rest.attachment_media> { image1 };
        a.href = "";
        a.name = "";
        a.caption = "{*actor*}";
        a.properties = null;



        if(fbapi.Users.HasAppPermission(Enums.ExtendedPermissions.publish_stream))
         fbapi.Stream.Publish(" Your message, a,
                                new List<action_link>() { new action_link() 
                                { text = "",                                      
                                href ="" } 
                                },
                                null, 0);
于 2010-09-23T06:16:18.437 回答