apprequests

Facebook requests dialog not showing message to recepient

情到浓时终转凉″ 提交于 2019-11-30 08:37:56
If I invoke this: FB.ui({ method: 'apprequests', title: 'Who would you like to invite?', message: 'Hello there' }); The 'preview' in the requests dialog that comes up asking me to select recepients, suggests that the recipient(s) will will get the message "Hello there". But all they get is: 'name' send you a request in 'app' which does not motivate them to click on it. Anybody else getting this problem? Any solutions? Jesse Proulx You can change the message in the notification if you pass the "new_style_message" parameter in the FB.ui method. This will change the format of the notification

Facebook Requests Dialog: Frictionless Requests in native iOS app possible?

▼魔方 西西 提交于 2019-11-29 18:40:18
问题 As of Oct 10, 2011, the Facebook iOS SDK does again support the "apprequests" dialog for sending user-to-user requests from native iOS apps (see the screenshots in Facebook's developer docs for an example). One thing that's missing compared to the apprequests dialog invoked via Javascript, though, is the possibility to enable the so-called frictionless requests (see the section about frictionless requests about halfway down the page), i.e. the ability for the user to allow the app to send

Facebook IOS SDK Frictionless Requests

别等时光非礼了梦想. 提交于 2019-11-29 18:02:24
There appears to be no way of setting frictionless requests as on for facebook ios sdk. For Javascript inplementations this can be done in the fb.init method. The only other reference to my problem is Facebook Requests Dialog: Frictionless Requests in native iOS app possible? where it states that frictionless just works when not in sandbox mode. Has anyone else found this to be the case? This call enables frictionless requests: [facebook enableFrictionlessRequests]; But it is not enough to prevent all dialogs from appearing briefly. Since the frictionless recipient cache is by default not

Facebook requests dialog not showing message to recepient

我怕爱的太早我们不能终老 提交于 2019-11-29 11:32:00
问题 If I invoke this: FB.ui({ method: 'apprequests', title: 'Who would you like to invite?', message: 'Hello there' }); The 'preview' in the requests dialog that comes up asking me to select recepients, suggests that the recipient(s) will will get the message "Hello there". But all they get is: 'name' send you a request in 'app' which does not motivate them to click on it. Anybody else getting this problem? Any solutions? 回答1: You can change the message in the notification if you pass the "new

App requests successful, but no notification shown

醉酒当歌 提交于 2019-11-27 19:08:42
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

“apprequests” dialog reports success, recipients receive nothing

孤者浪人 提交于 2019-11-27 13:14:09
Using the Facebook iOS SDK I can display a dialog with apprequests and send it. Delegate method -dialogDidComplete: gets called, but the recipient(s) receive no notification or request of any kind. If they have the app authorized, Facebook.app (for iOS) will display a number of pending requests next to the app bookmark, but notification jewel doesn't get updated and notification is nowhere to be found and Facebook.app doesn't display any push notifications. I have followed Facebook's own tutorial for this and even tried with their own sample project Hackbook, but I get the same result every

App requests successful, but no notification shown

ぃ、小莉子 提交于 2019-11-26 19:46:28
问题 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

“apprequests” dialog reports success, recipients receive nothing

久未见 提交于 2019-11-26 16:15:56
问题 Using the Facebook iOS SDK I can display a dialog with apprequests and send it. Delegate method -dialogDidComplete: gets called, but the recipient(s) receive no notification or request of any kind. If they have the app authorized, Facebook.app (for iOS) will display a number of pending requests next to the app bookmark, but notification jewel doesn't get updated and notification is nowhere to be found and Facebook.app doesn't display any push notifications. I have followed Facebook's own