如何在没有调整大小的情况下将图像发布到朋友的墙上?

时间:2012-01-31 03:50:22

标签: c# .net facebook-c#-sdk

使用OAuth / Facebook-C#-SDK?当我发布像这样的图像时:

http://im.in.com/connect/images/profile/oct2009/Google_300.jpg

调整为:

enter image description here

我的C#代码:

var args = new Dictionary<string, string>();
args["message"] = "..."; 
args["picture"] = "http://im.in.com/connect/images/profile/oct2009/Google_300.jpg";
string uri = String.Format("{0}/feed", id);
dynamic result = facebook.Post(uri, args);

如何解决这个问题?提前谢谢。

1 个答案:

答案 0 :(得分:0)

没有“修复”这个。 Facebook缩小图像以适应饲料帖子的图像大小限制。