-1

Facebook php sdkを使用してアプリケーションとしてユーザーに通知を投稿する方法は?

画像を添付しました。その画像では、SongPop からのアプリケーションが私に通知を投稿していることがわかります。このようなものを作りたいです。このアプリはユーザーに通知を投稿すると思いますが、特定のユーザーに通知を投稿できますか?

アプリからの通知

4

1 に答える 1

0

アプリの設定でキャンバスページのURLを設定する必要があり、このコードを試してください

$url = "https://graph.facebook.com/$user_id/notifications";
$notification_message = 'My Example Notification Message';
$app_access_token = $app_id . '|' . $app_secret;
$attachment = array(
 'access_token' => $app_access_token, // access_token is a combination of the AppID & AppSecret combined
 'href' => '', // Link within your Facebook App to be displayed when a user click on the notification
 'template' => $notification_message, // Message to be displayed within the notification
   );
// set the target url
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);  //to suppress the curl output
$result = curl_exec($ch);
curl_close ($ch); 
于 2012-11-08T12:38:53.697 に答える