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