Hi i created a new application in facebook with offline access permission. Application is working fine when i posting the wall information a开发者_开发知识库ction link parameter is not shown
How to solve it....
And one more question when i post information some of the id's were not posted, exception error handling shows the message: FacebookErrorResponseException: Application request limit reached
How to fix it ....
Use the facebook API's available on codeplex.com and try this out,
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);
精彩评论