Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to send notification from app via notification API to a user who has authenticated my app. Can anyone help me regarding it? Any help will be appreciated.

Lets say, I want user to get a notification when certain events happens in my app

Thanks in advance
Posted

I found its solution myself. Developer need to follow following steps:

1. Download facebook sdk for php from here

2. Run following snippet:

require_once "facebook-php-sdk/facebook.php";

$facebook = new Facebook();

$app_id = YOUR_APP_ID;

$app_secret = YOUR_APP_SECRET;

$app_access_token = $app_id . '|' . $app_secret;

$response = $facebook->api( '/RECEIVER_USER_ID/notifications', 'POST', array(

'template' => 'You have received a new message.',

'href' => 'RELATIVE URL',

'access_token' => $app_access_token
) );

print_r($response);

if everything works fine then you will get following output:
-------------------------------------------------------------
Array

(

[success] => 1
)
 
Share this answer
 
Comments
Kar Sho 1-Dec-12 3:10am    
Thanks Aakash... but i need to go several different pages in app...
Ex: if i click one notification, that shows 1st page of my app, and click another notification , that's goes to 2nd page(another page) of my app???
AakashGupta 1-Dec-12 3:21am    
Hey Kar Sho,

Just change RELATIVE URL path for different kind of notification you want to show to user.
A better place to investigate this would be here[^]. You are more likely to find answers from the source.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900