Answer by Rakesh Sharma for Graph API new feed post object-Attachment not...
you have to permission pubish_stream on your app and then try this using curl:-$attachment = array('access_token' => $access_token,'message' => 'i m success to using graph api for post...
View ArticleAnswer by Relaxing In Cyprus for Graph API new feed post object-Attachment...
You are posting to the feed. You should post to the LINK instead.Post the link to the picture to the link feed, and you should be fine.https://developers.facebook.com/docs/reference/api/link/I will...
View ArticleAnswer by Sahil Mittal for Graph API new feed post object-Attachment not showing
I am assuming user gave the permission for user_photos / friends_photos. Since you have the photo_id, you may try this.$pic = $facebook->api("/PHOTO_ID");$pic_url = $pic->source;$attachment =...
View ArticleAnswer by Jonathan_Ng for Graph API new feed post object-Attachment not showing
I think the 'object_attachment'=>$photo_id won't work any more.You should change it to 'picture'=>$photo_url$photo_Url = "link to your photo";//Valid Facebook Photo ID... $facebook = new...
View ArticleGraph API new feed post object-Attachment not showing
I'm having a strange problem with the graph API, the below code used to work for me adding a post to a users news feed with a thumbnail of the attached photo (referenced in 'object_attachement'...
View Article