您好我在facebook中创建了一个具有离线访问权限的新应用程序。当我发布墙信息动作链接参数未显示时,应用程序正常工作
如何解决它......
还有一个问题,当我发布信息时,一些id没有发布,异常错误处理显示消息:FacebookErrorResponseException:达到了应用程序请求限制
如何修复它......
答案 0 :(得分: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);