Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 :)

share|improve this question
1  
What kind of notification are you looking for? What should this notification mention? – pal4life Aug 6 '12 at 19:25
The notification should invite the recipients to download the app from the google play market – Smile Applications Aug 6 '12 at 19:35
One use case I have succeeded in is the Refer a friends box through the Apprequest which sends notification to folks to use the app. Here is this one developers.facebook.com/docs/reference/dialogs/requests – pal4life Aug 6 '12 at 19:50
Yes I tried to do this but it doesn't work yet. If you don't write params.putString("to", 535465135216); he shows to you te FriendBox and you can choose the friends to invite, you select the friend but he doesn't receive the notification – Smile Applications Aug 6 '12 at 20:10

1 Answer

up vote 3 down vote accepted
+50

Many times when invites are successfully sent but do not appear for the user it is because a canvas url was not set in the application settings.

The canvas url parameter is crucial when dealing with application invites/requests because when a user takes action on the invite (that means clicks "accept"), he is redirected to your application. If no canvas url is supplied, the invitation essentially becomes nullified because Facebook has no where to send the user after they click!

You are developing an android application so you might not even need a canvas url but in order to get the invitations working correctly, you'll have to specify one.


Another possibility is that you are sending the invite/request to a user that is not defined in the "roles" of your application when your app is still set to "sandbox mode". As long as your app remains in sandbox mode it is essentially invisible to anyone not defined in the "roles" section. This sandbox mode allows developers to develop and test their application without having to worry about making it public on Facebook. So you'll be able to send the invite, but if you send it to someone who is not defined and involved in the development of the app, s/he will simply not get the invite (even though the action will seem that it was successful).

share|improve this answer
ThankYou so much. I think that it's not a sandbox problem because i'm trying to send a notification to myself for testing (and clearly i am involved in the development of the app :)) for the canvas url i'm testing – Smile Applications Aug 9 '12 at 23:51
1  
Ok you are my hero. ThankYou so much i have set the canvas and everything is gone ok. You've earned it. +50 (You may award your bounty in 14 hours. So wait please :)) – Smile Applications Aug 10 '12 at 0:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.