2011-01-13 93 views
1

將通知發送給批准我的應用的Facebook用戶的朋友的最佳方式是什麼?如何使用Facebook API發送通知?

我知道我可以寫在朋友的牆上,但有沒有另一種方式離開任何一種的通知?

謝謝。

回答

1

根據通知而不是邀請,沒有沒有更多的選項。正如您在permissions文檔頁面中看到的,您無法訪問朋友的電子郵件。

+0

非常感謝,所以.. Facebook應用程序可以在沒有多選對話框的情況下發送邀請嗎? – taxman 2011-01-13 11:10:38

0
$notificationdata = array(

    'href'=> 'https://apps.facebook.com/MY_APP/', 

    'access_token'=> $app_token, 

    'template'=> '180 char string as information' 
); 

$sendnotification = $facebook->api('/' . $user_id . '/notifications', 'post', 

$notificationdata);