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.

According to the Facebook Documentation all I have to do is add a "picture" property to the post object... But this is not working, here's my code:

    [CanvasAuthorize(Permissions = "publish_stream,offline_access")]
    public ActionResult Share(string message, string link, string picture, string name)
    {
        var fb = new FacebookWebClient();
        var postArgs = new Dictionary<string, string>();
        postArgs["message"] = message;
        postArgs["link"] = link;
        postArgs["picture"] = picture;
        postArgs["name"] = name;

        fb.Post("/me/feed", postArgs);
        return Json(new {result = "success"}, JsonRequestBehavior.AllowGet);
    }
share|improve this question

1 Answer

up vote 1 down vote accepted

What value are you sending for picture? It needs to be a full url, eg http://www.example.com/photo.jpg. Also, it needs to be a URL that Facebook servers can access because Facebook will cache the image and then turn your link into their cached image url.

share|improve this answer
what does fb.Post return? – bkaid Jun 3 '11 at 22:17
@bkaid: It returned a json object: {"id":"1279802614_2095710473911"}, shouldn't that mean everything went okey? – Kassem Jun 3 '11 at 22:27
Yeah - what does the facebook post look like on the users wall? – bkaid Jun 3 '11 at 23:07
1  
@bkaid: Well the post includes all the passed data except the picture. So it is basically a normal wall post (text only) with a link that points to the item, but no picture... – Kassem Jun 4 '11 at 21:16
could it be because I'm posting from my local machine?! I did not think of that but I think this could be it... will give it a try! – Kassem Jun 4 '11 at 21:17
show 2 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.