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 using the Windows 8 Release Preview along with the latest Facebook C# SDK I could get using Nuget. my attempt to upload a new photo to my facebook photo album does not work even though there is no error set from the PostTaskAsync, here is the key part of my code:

This chunk just find the target album and sets the alumID variable

   albums = await _fb.GetTaskAsync("me/albums");
            string albumID =  string.Empty;             
            foreach (dynamic albumInfo in albums.data)
            {

                if (albumInfo.name == "john\'s photos")
                {
                    albumID = albumInfo.id + "/photos";
                }
            }

now for testing I open an image file in my pictures folder:

    FileOpenPicker open = new FileOpenPicker();
        open.SuggestedStartLocation = PickerLocationId.PicturesLibrary;
        open.ViewMode = PickerViewMode.Thumbnail;

        // Filter to include a sample subset of file types
        open.FileTypeFilter.Clear();
        open.FileTypeFilter.Add(".jpeg");
        open.FileTypeFilter.Add(".jpg");

        // Open a stream for the selected file
        StorageFile file = await open.PickSingleFileAsync();

now I want to get a stream and use PostTaskAsync to post the selected image to my Facebook album

// Ensure the stream is disposed once the image is loaded
            using (Stream fileStream = await file.OpenStreamForReadAsync())
            {

                dynamic result = _fb.PostTaskAsync(albumID,
                                            new
                                            {
                                                message = "upload using Facebook C# SDK",
                                                file = new FacebookMediaStream
                                                {
                                                    ContentType = "image/jpg",
                                                    FileName =file.Path
                                                }.SetValue(fileStream)
                                            });
               }

There are no exceptions but result.status = waiting for activation. seems like the call is waiting for something but have no idea wahat.

Thanks

share|improve this question

closed as too localized by casperOne Nov 8 '12 at 17:18

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

You forgot the await.

dynamic result = await _fb.PostTaskAsync(albumID, ....
share|improve this answer
dumb old me, it is always something simple. Love that async stuff but still getting used to it. Thanks. I am developing a camera capture metrod sample that will upload to facebook – John Mcfetridge Jun 20 '12 at 14:52

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