Bir durum güncellemesi göndermek çalıştığınızda Facebook PHP SDK kullanarak, aşağıdaki hatayı alıyorum:
Fatal error: Uncaught OAuthException: (#200) The user hasn't authorized the application to perform this action
Bunlar ben aldım adımlar şunlardır:
1.Get kodu:
https://graph.facebook.com/oauth/authorize?client_id=FB_APP_ID&redirect_uri=REDIRECT_URI
2.Get erişim belirteci:
https://graph.facebook.com/oauth/access_token?client_id=FB_APP_ID&code=CODE&client_secret= FB_SECRET&redirect_uri=REDIRECT_URI
Durum güncelleme 3.Attempt:
require_once(facebook.php);
$fb = new Facebook(
array(
'appId' => FB_APP_ID,
'secret' => FB_SECRET
));
$post = $fb->api('me/feed','POST', array('access_token' => ACCESS_TOKEN, 'message' => 'hello world!'));
Bunu yapmak için uygulama yetkisi olur benim uygulamada herhangi bir ayarı görmüyorum, ama belki ben bir şey eksik. Herhangi bir öneriniz?