Hello everyone i'm trying to use the Facebook Api to send a notification and i did this:
Bundle params = new Bundle();
params.putString("to", 535465135216);
params.putString("message", "Prova Prova A A");
facebook.dialog(Answer.this, "apprequests", params, new DialogListener() {
public void onComplete(Bundle values) {
Toast toast = Toast.makeText(getApplicationContext(), "Done",
Toast.LENGTH_SHORT);
toast.show();
}
@Override
public void onFacebookError(FacebookError error) {
Toast.makeText(getApplicationContext(), "Facebook Error: " + error.getMessage(),
Toast.LENGTH_SHORT).show();
}
@Override
public void onCancel() {
Toast toast = Toast.makeText(getApplicationContext(), "App request cancelled",
Toast.LENGTH_SHORT);
toast.show();
}
@Override
public void onError(DialogError e) {
// TODO Auto-generated method stub
}
});
And when i try to run this project everything work well and it shows the Toast "Done" but in my Facebook Profile doesn't appear the notification.
Should I change something in Facebook App's settings ?
ThankYou :)