Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App requests successful, but no notification shown

I am using the normal setup for sending invites through the requests dialogue:

FB.ui(
  {
    method: 'apprequests', 
    message: "Please add me, I am doing the same, thanks!"
  }, 
  function(response) {
   console.log(response);
  }
);

The response is successful, response.to shows multiple ids. So sending these invites works like it should. The problem is that these apprequests are not shown up as notifications like they usually do, instead the only place to find them here.

Has the API changed? Looking for answers has given me no results, though I did find this bug report from February 15th 2013.

Is Facebook just testing yet again, or has the API changed but not the documentation? I am truly grateful for any insights!

like image 549
Emil Ahlbäck Avatar asked May 28 '13 13:05

Emil Ahlbäck


People also ask

Why am I not getting my child's app requests on my iPhone?

On your iPhone, iPad, or iPod touch Go to Settings. Tap your name, then tap Family Sharing. If you're the family organizer, make sure that Purchase Sharing is turned on. Then you can tap a family member's name to see if Ask to Buy is turned on for their account.

Where do Apple store permission requests go?

With Ask to Buy, when kids want to buy or download a new item, they send a request to the family organizer. The family organizer can use their own device to approve or decline the request.

Why is the Ask permission on Apple not working?

You can't ask permission because you have signed in with iCloud and iTunes accounts that are not associated with each other." When you see this message, check which Apple ID you've signed in with, check your Family Sharing settings and make sure you're using a supported device.


1 Answers

There's two simple things that might cause that problem.

One is that you application is missing the Canvas. Just add it from the your App panel in Facebook Developers.

The second one - make sure your app is NOT in SandBox Mode. If it is it won't send any notifications. I lost hours before figuring that out and changing the code in all possible ways.

Hope that helps.

like image 118
gox Avatar answered Oct 20 '22 12:10

gox