I want to be able to post images to my Facebook page from ASP.NET application, the below code is working properly for feeds but not for images.
When I choose to post a feed, I can post it to my wall & also to my page (if I provide the page ID) with no problem, however if I choose to post image, the image is always posted to my personal wall (and not to my page wall) whether if I passed "me" or "Page ID"
ex:
client.Post("/Page_ID/photos", parameters)
post to my wall (it should post to my page wall)
client.Post("/me/photos", parameters)
post to my wall (works properly)
client.Post("/Page_ID/feed", parameters)
post to my Page (works properly)
client.Post("/me/feed", parameters)
post to my wall (works properly)
here is the full code:
Private Sub CheckAuthorization()
Dim app_id As String = "app_id"
Dim app_secret As String = "app_secret"
Dim scope As String = "publish_stream,manage_pages,user_photos,photo_upload"
If Request("code") Is Nothing Then
Response.Redirect(String.Format("https://graph.facebook.com/oauth/authorize?client_id={0}&redirect_uri={1}&scope={2}", app_id, Request.Url.AbsoluteUri, scope))
Else
Dim tokens As New Dictionary(Of String, String)()
Dim url As String = String.Format("https://graph.facebook.com/oauth/access_token?client_id={0}&redirect_uri={1}&scope={2}&code={3}&client_secret={4}", app_id, Request.Url.AbsoluteUri, scope, Request("code").ToString(), app_secret)
Dim request__1 As HttpWebRequest = TryCast(WebRequest.Create(url), HttpWebRequest)
Using response__2 As HttpWebResponse = TryCast(request__1.GetResponse(), HttpWebResponse)
Dim reader As New StreamReader(response__2.GetResponseStream())
Dim vals As String = reader.ReadToEnd()
For Each token As String In vals.Split("&"c)
'meh.aspx?token1=steve&token2=jake&...
tokens.Add(token.Substring(0, token.IndexOf("=")), token.Substring(token.IndexOf("=") + 1, token.Length - token.IndexOf("=") - 1))
Next
End Using
Dim access_token As String = tokens("access_token")
Dim client = New FacebookClient(access_token)
Dim parameters As Object = New ExpandoObject()
parameters.message = "message text goes here"
Dim img_path As String = Server.MapPath("/images/asp.jpg")
Dim fmo As New FacebookMediaObject
fmo.ContentType = "image/jpeg"
fmo.FileName = Path.GetFileName(img_path)
parameters.source = fmo.SetValue(File.ReadAllBytes(img_path))
Dim result As Object = client.Post("/Page_ID/photos", parameters)
End If
End Sub
Please Advise