I am using graph api for uploading the photo.
I want to upload the picture to wall of user. I can't paste my local pc image to it.So Need to create first album and add image into it.
I am able to create an album.But I am getting an error on putting photo to an album.Error is OAuthException", "message": "(#324).
Here is my url .I am doing in C#.net
https://graph.facebook.com/album_id/photos?access_token=generated access token&method=post&picture=D:\foldername\Image\flower.jpg&message=flower
pictureshould be the URL of valid picture e.g.sURL = "https://graph.facebook.com/album_id/photos?access_token=generated access token&method=post&picture=" + Server.UrlEncode("http://www.somesite.com/flower.jpg") + "&message=flower";– Shadow Wizard Jun 30 '11 at 7:45