Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I try to post my image link to Facebook fan page using Facebook C# SDK.

var client = new FacebookClient(this._accessToken);
dynamic parameters = new ExpandoObject();
parameters.message = "Check out this funny article";
parameters.link = "http://photos-f.ak.fbcdn.net/hphotos-ak-snc6/260418_185563101499189_124421460946687_425466_2105002_t.jpg";
parameters.picture = "http://photos-f.ak.fbcdn.net/hphotos-ak-snc6/260418_185563101499189_124421460946687_425466_2105002_t.jpg";
parameters.name = "My Picture";
parameters.caption = "My Picture Caption";
parameters.description = "";
dynamic result = client.Post("{Fan page ID}/feed", parameters);

An error occur like below.

(OAuthException) (#100) FBCDN image is not allowed in stream: http://photos-f.ak.fbcdn.net/hphotos-ak-snc6/260418_185563101499189_124421460946687_425466_2105002_t.jpg

But if i set "picture" parameter to empty string it work perfectly.

How could i fix this problem?

share|improve this question

1 Answer

up vote 2 down vote accepted

Facebook doesn't allow you to re-post or hot-link images that are hosted on their CDN. They added this policy and error message back in June 2010. You will need to upload this photo to some kind of non-Facebook server or photo sharing site and then use that url.

share|improve this answer
Thank you. But if i still want to post image link just like used on Facebook (paste url that have image, it will show that image and description). Is there a way to do it. PS. Sorry for my english. – TaeV Jul 17 '11 at 5:19
Sorry dont quite understand what you are asking. – BK. Jul 17 '11 at 5:58
In facebook you can do like this image --> mediafire.com/i/?wtmpejcn1et3xiw. So i want to develop program that automatic do like this for every 2 hr. – TaeV Jul 17 '11 at 6:49
Based on that error message and that forum discussion you would need to 1) download image from Facebook using C# WebClient 2) Save to your web server or use WebClient to upload image to your a site like mediafire 3) post to Facebook API using mediafire/server url. address. – BK. Jul 17 '11 at 8:25
Thank you so much. – TaeV Jul 17 '11 at 8:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.