Facebook Graph API Group Files -


facebook offers new functionality groups. possible post files within group. (http://mashable.com/2012/05/10/facebook-groups-3/)

i trying query files using graph api on documentation site there 4 urls described. "docs", "members", "feed", "picture". when read "feed" path not file postings.

is there hidden path? found no new permission.

anyone has idea?

i have searched solution on several internet pages there descriptions on how read , post photos, described in document.

is there nobody writing app can upload files groups?

try this, might helpful try {

    $facebook->api('/'.$groups[$id].'/feed', 'post',                array(                   'access_token' => $access_token,                  'message' => stripslashes(stripslashes($mapp_message)),                  'name' => stripslashes($name),                  'link' => $link,                  'description' => stripslashes(stripslashes($description)),                  'picture' => "images/send_imges/".$image                     )             );     } catch(facebookapiexception $e) {         echo $e;     } 

Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -