使用WP7中的Facebook.dll将图片直接发布到Facebook

时间:2011-09-10 15:42:06

标签: c# facebook

我想在Facebook上的照片部分张贴图片。我看到很多例子,但我可以看到我必须传递图像的URL才能发布它

dynamic parameters = new ExpandoObject();
parameters.message = "Check out this funny article";
parameters.link = "http://www.example.com/article.html";
parameters.picture = "http://www.example.com/article-thumbnail.jpg";
parameters.name = "Article Title";
parameters.caption = "Caption for the link";
parameters.description = "Longer description of the link";

有没有办法上传图片,而不是提供图片的URL链接。

1 个答案:

答案 0 :(得分:0)

我认为您必须使用userpage API上传照片,然后通过object_Id在帖子中引用它。