I have created an app, and now i want to post a message on one of my friends wall with use of the new Graph API. Is this do-able?
I am already using oAuth and the Gr
To clarify, 'post' here refers to the HTTP method, as in GET/POST. See https://github.com/facebook/php-sdk/blob/master/src/base_facebook.php : protected function _graph($path, $method = 'GET', $params = array())
$result = $facebook->api( '/me/feed/', 'post', array('access_token' => $this->access_token, 'message' => 'Playing around with FB Graph..') );