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'm a beginner when it comes to facebook apps but a long-time developer. I'm familiar with sharing/liking using the og tags but my client wants to upload the exact image to a users wall and include a description and link back to their website. Is this possible with and app and if so do you have an tutorials, example, screen-shots, permissions needed, etc? Thanks

share|improve this question

closed as not a real question by jrummell, Igy, Mario, ecatmur, 0x499602D2 Feb 2 at 2:18

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

to upload photos to the users accounts you need the following permissions :

publish_stream,user_photos

and this my method to Post photos to the user timeline album.

public static bool PostWithImage(string UserID, string AccessToken, string Status, string Link = "", string PhotoPath = "") {

    if (PhotoPath =="")
    {
        FacebookClient fb = new FacebookClient(AccessToken);
        Dictionary<string, object> postArgs = new Dictionary<string, object>();
        postArgs["message"] = Status;//key message, value text
        if (Link != "")
            postArgs["link"] = Link;       
            dynamic res = fb.Post("/" + UserID + "/feed", postArgs);
            return true;             
    }
    else {
        FacebookClient fb = new FacebookClient(AccessToken);
        string AlbumID = "";
        // Find the 'Wall Photos' Album Object_ID
        // alter this part to publish photos to a different album
        var query = string.Format("SELECT object_id,name FROM album WHERE owner = me()");
        dynamic r1 = fb.Get("fql", new { q = query });
        foreach (var post in r1.data)
        {
            if (post.name=="Timeline Photos") { AlbumID = Convert.ToString(post.object_id); }
        }

        if (AlbumID == "")
        {
            // MessageBox.Show("the album 'Wall Photos' not found.");
            return false;
        }


        dynamic parameters = new ExpandoObject();
        parameters.message = Status;
        if (Link != "")
            parameters.link = Link;
        parameters.source = new FacebookMediaObject
        {
            ContentType = "image/jpeg",
            FileName = Path.GetFileName(PhotoPath)
        }.SetValue(File.ReadAllBytes(PhotoPath));
            // Post the image/picture to the Page's Wall Photo album
            fb.Post("/" + AlbumID + "/photos", parameters);
            return true;
    }

}

and this my tutorial about Upload Images [in Arabic] :

http://www.youtube.com/watch?v=Kc_3vLBtv3U

share|improve this answer
1  
Thanks, ill mark this as answered when i finish the project and it works. – Steve Meyer Feb 11 at 18:55

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