This is the code I am using for posting Image on Wall.
"https://graph.facebook.com/"
+ Login.facebookid
+ "/feed?access_token=" + accesstoken
+ "&method=post"
+ "&message=" + strFullMessage.replaceAll(" ", "%20")
+ "&picture=" + imageUrl
+ "&privacy=" + resp
I am using facebook Graph API to post image on wall.
What I expected is Image will post in exact size as the Image has?
But the image is posted in Thumbnail size.
Why the graph api is taking thumbnail image?
But when I use (/me/photos
),it is taking full image.Why this change in API.
How to post full image using (/me/feed
)? Is this a bug in facebook Graph API?