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 am trying to post a picture on a page wall with this code:

string message = "Some message";
string picture = "http://somesource.com/test.jpg";
string pageToken = "page access toke";
string pageId = "page id";
string PostUri = "https://graph.facebook.com/{0}/feed?access_token={1}&";

var request = string.Format(PostUri, pageId, pageToken);


var sb = new StringBuilder();
sb.AppendFormat("picture={0}&", picture);
sb.AppendFormat("message={0}", message);

WebClient webClient = new WebClient();
webClient.Encoding = Encoding.UTF8;
webClient.Headers.Add("Content-Type", "application/x-www-form-urlencoded");

var bytes = Encoding.UTF8.GetBytes(sb.ToString());

webClient.UploadData(request, bytes);

It is works for me. But posted image using graph api has smaller size than the image posted using regular facebook web interface. What should I change in this code to display image with larger size?

share|improve this question

1 Answer

Change it to source from picture

sb.AppendFormat("source={0}&", picture);

picture is used to thumbnails.

UPDATE You can also set height and width of the image

   sb.AppendFormat("height={0}&", 450);
   sb.AppendFormat("width={0}&", 450);
share|improve this answer
I have tried with source. Also I have tried to upload a picture in my album and have used a object_attachment. But the result is still the same. Attached image has small size. – Oleksandr Shpachuk May 21 '12 at 7:39
What is the actual size of the image? – Asif May 21 '12 at 7:43
You can also try to set 'height' and 'weight' of the image in the graph API. – Asif May 21 '12 at 7:54
Have tried with height and width, but the result is the same. – Oleksandr Shpachuk May 21 '12 at 9:14
The actual size of the image is 525x438 – Oleksandr Shpachuk May 21 '12 at 9:22
show 3 more comments

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.