Ben bir uygulama oluşturduk ve şimdi ben yeni Graph API kullanımı ile arkadaşlarım duvarın birinde bir mesaj göndermek istiyorum. Bu yapmak mümkün mi?
I am already using oAuth and the Graph-api to get a list of all my friends. The API at http://developers.facebook.com/docs/api tells me to cURL https://graph.facebook.com/[userid]/feed to read the feed, but it also tells me howto post a message:
curl -F 'access_token=[...]' -F 'message=Hello, Arjun. I like this new API.' https://graph.facebook.com/arjun/feed
Tabii bu işe yaramazsa! Ve neden ben bulamıyorum ..
İşte benim PHP-kodu vardır:
require_once 'facebook.php'; // PHP-SDK downloaded from http://github.com/facebook/php-sdk
$facebook = new Facebook(array(appId=>123, secret=>'secret'));
$result = $facebook->api(
'/me/feed/',
array('access_token' => $this->access_token, 'message' => 'Playing around with FB Graph..')
);
Bu kod herhangi bir hata atar etmez ve benim access_token (aksi i run $ facebook-> api ('Bana / access_token =?' Could't $ this-> access_token) doğru olduğunu biliyorum;. Benim UserObject olsun.
Herkes orada sucsessfully Grafik-API kullanarak bir mesaj gönderdiler mi? Sonra ben need senin yardım! :-)