Revision: 63043
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at April 3, 2013 03:20 by serialk89
Initial Code
include('inc/facebook.php'); $facebook = new Facebook(array( 'appId' => '149443111891577', 'secret' => 'fa2dbe4a1b73ead4a03d817fe17ab3bf', 'grant_type' => 'client_credentials' )); $enviar = 1; //Solo para que no envie siempre if($enviar == 0){ $post = $facebook->api('/user_id/notifications/', 'post', array( 'access_token' => 'app_key|secret_key', 'href' => '', //this does link to the app's root, don't think this actually works, seems to link to the app's canvas page 'template' => 'El Gurú ha respondido tu pregunta', 'ref' => 'user_id' //Parametros por ejemplo )); } if( isset($_REQUEST['fb_ref'])) { $ids = explode("&",$_REQUEST['fb_ref']); $user_id = $ids[0]; $id_preg = $ids[1]; }else{ $user_id = ""; $id_preg = ""; }
Initial URL
Initial Description
La función del SDKphp de facebook 'notifications' envia una notificación por parte de la aplicación al usuario que quieras (que haya aceptado tu aplicación).
Initial Title
Enviar notificación SDK facebook php por parte de la aplicacion
Initial Tags
php, facebook
Initial Language
PHP