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.

I am trying to build application request on my website using request dialog box.

When i send app request to friends, notification appears for a moment & goes away. Also it is not showing any new notifications either in "App & games" and "notifications" pages.

Here Sample Code :-

FB.init({ appId : '127617823933232', status : true, cookie : true, oauth: true, });

function sendRequestToRecipients() {

var user_ids = document.getElementsByName("user_ids")[0].value;
FB.ui({method: 'apprequests',
    message: 'EventSeekr Join Request',
    to: user_ids, 
}, requestCallback);

}

function sendRequestViaMultiFriendSelector() {

FB.ui({method: 'apprequests', message: 'EventSeekr Join Requestt' }, requestCallback);

}

share|improve this question

1 Answer

I answered a similar question based on some issues I was having with my app, see if it helps:

From my experience and from reading the Facebook Developer Guide, it seems like it's mandatory for you to have a Canvas defined for your Facebook app so the requests render as Notifications.

I am trying to solve a problem where these notifications show fine in the Facebook website but not on the Facebook Android client's notification popup.

share|improve this answer

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.