Howto kullanımı FB Grafik bir besleme (duvar) bir mesaj göndermek için

6 Cevap php

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! :-)

6 Cevap

Tamam, ben nihayet çözüldü. Yardımlarınız :-) için phpfour Thanx

Birincisi: Benim bağlantı-url ("publish_stream") ile bu gibi görünüyor:

$connectUrl = $this->getUrl(
  'www',
  'login.php',
  array_merge(array(
    'api_key'         => $this->getAppId(),
    'cancel_url'      => $this->getCurrentUrl(),
    'req_perms'       => 'publish_stream',
    'display'         => 'page',
    'fbconnect'       => 1,
    'next'            => $this->getCurrentUrl(),
    'return_session'  => 1,
    'session_version' => 3,
    'v'               => '1.0',
  ), $params)
);

Second; Ben aracılığıyla Facebook'a göndermek için çalıştı

$result = $facebook->api(
    '/me/feed/',
    array('access_token' => $this->access_token, 'message' => 'Playing around with FB Graph..')
);

Ama bunu yapmak için doğru yolu Bir daha fazla parametre ('post') şunlar yer alır:

$result = $facebook->api(
    '/me/feed/',
    'post',
    array('access_token' => $this->access_token, 'message' => 'Playing around with FB Graph..')
);

Sen yem yazmak için "publish_stream" genişletilmiş izni gerekir. İşte bunlardan bir tam listesi: http://developers.facebook.com/docs/authentication/permissions.

Genişletilmiş izin almak amacıyla, bu şekilde elde yetkilendirme belirteci:

https://graph.facebook.com/oauth/authorize?
client_id=...&
redirect_uri=http://www.example.com/callback&
scope=publish_stream

Bağlantı dediği gibi: enter link description here

<?php 
  $app_id = "YOUR_APP_ID";
  $app_secret = "YOUR_APP_SECRET";
  $my_url = "YOUR_POST_LOGIN_URL"; 
  $code = $_REQUEST["code"];
  if(empty($code)) {
    $dialog_url = "http://www.facebook.com/dialog/oauth?client_id="
    . $app_id . "&amp;redirect_uri=" . urlencode($my_url) . "&amp;scope=email";
    echo("<script>top.location.href='" . $dialog_url . "'</script>");
  }
  $token_url = "https://graph.facebook.com/oauth/access_token?client_id="
    . $app_id . "&amp;redirect_uri=" . urlencode($my_url)
    . "&amp;client_secret=" . $app_secret
    . "&amp;code=" . $code;
  $access_token = file_get_contents($token_url);
  $graph_url="https://graph.facebook.com/me/permissions?".$access_token;
  echo "graph_url=" . $graph_url . "<br />";
  $user_permissions = json_decode(file_get_contents($graph_url));
  print_r($user_permissions);
?>

Ek olarak chf,

Yazdıktan sonra:

$getLinkToken='https://graph.facebook.com/oauth/access_token'.
              '?client_id=YOUR_APPID'.
              '&redirect_uri=YOUR_SITE'.
              '&client_secret=YOUR_SECRET'.
              '&code=CODE_KEY';

Ben yanıt var:

 https://graph.facebook.com/oauth/access_token?
    client_id=xxxxxxxxxxxxxx
    &redirect_uri=myurl
    &client_secret=xxxxxxxxxxxxxx
    &code=xxxxxxxxxxxxxx

Hiçbir hangi biridir access_token, client_secret veya kod

$facebook->api( '/YOUR_APPID/feed/', 'post', 
array('access_token' => $this->access_token,
'message' => 'Playing around with FB Graph..'));

Bu acces almak için eski bir yoldur. GRAFİK ilk i ile code tuşuna oluşturulur:

$getLinkCode ='https://graph.facebook.com/oauth/authorize'.
              '?client_id=YOUR_APPID'.
              '&redirect_uri=YOUR_SITE'.
              '&scope=publish_stream';

Biz code tuşuna varken Ve şimdi biz linkten * access_token * üretebilir:

$getLinkToken='https://graph.facebook.com/oauth/access_token'.
              '?client_id=YOUR_APPID'.
              '&redirect_uri=YOUR_SITE'.
              '&client_secret=YOUR_SECRET'.
              '&code=CODE_KEY';

Ama bu access_token olarak mesaj göndermek KULLANICI değil UYGULAMA ... NEDEN?!

İsterseniz uygulama duvar kullanımı gönderebilir:

$facebook->api( '/YOUR_APPID/feed/', 'post', array('access_token' => $this->access_token, 'message' => 'Playing around with FB Graph..'));

Bunun yerine aşağıdaki kodu kullanarak

[facebook dialog:@"feed"
 andParams:params 
 andDelegate:self]; 

Aşağıdaki çözümü kullanın

[facebook requestWithGraphPath:@"me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];