Questions tagged [apprequests]

180 questions
18
votes
2 answers

"apprequests" dialog reports success, recipients receive nothing

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…
Filip Radelic
  • 26,607
  • 8
  • 71
  • 97
16
votes
1 answer

Facebook requests dialog not showing message to recepient

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…
Mike Hogan
  • 9,933
  • 9
  • 41
  • 71
15
votes
6 answers

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…
10
votes
2 answers

Deleting requests 2.0 for unauthenticated users

According to Facebook documentation the application is responsible to delete requests once users had accepted them. According to Facebook the application needs to combine the request-id with the user-id in order to delete the request. However, if…
Daniel Zohar
  • 1,962
  • 2
  • 13
  • 19
9
votes
2 answers

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

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…
Ole Begemann
  • 135,006
  • 31
  • 278
  • 256
8
votes
2 answers

Cordova : Facebook plugin : showDialog apprequests

I installed last month the Facebook plugin for Cordova. Last week I implemented the showDialog to let people invite their friends to the app using "apprequests" method. It worked when I tried with two friends, they got the invites. Today, trying…
7
votes
3 answers

Avoiding error 100: invalid parameter (requires valid redirect URI) in application requests dialog

I'm developing a game for Facebook. I need a way for users to invite others to the game. For that, I use the apprequests dialog. I redirect the user to the dialog URL, which I glue together like this: $url =…
Michal Pokorný
  • 161
  • 1
  • 2
  • 7
7
votes
1 answer

iOS not receiving user to user app requests

I am sending app requests from an iOS native app using Facebook SDK dialog. I have created a canvas app and set the iTunes ID (using a valid ID from a different app in the store now, since mine is not). The requests arrive at desktop www site, and…
user1055568
  • 1,349
  • 13
  • 21
6
votes
2 answers

Facebook app request dialog not sending request

We have a website that uses Facebook for login. We have an invite page that displays the user's facebook friends and lets then invite them through facebook: $('.invite_container a').live('click', function() { var link = $(this); …
6
votes
2 answers

Facebook Request Dialog and "app_non_users" filter not working

I have problem with apprequests and ['app_non_users'] filter. Code: window.fbAsyncInit = function() { FB.init({appId: '123', status: true, cookie: true, xfbml: true}); } function sendRequestViaMultiFriendSelector() { FB.ui({ …
User
  • 1,978
  • 5
  • 26
  • 47
5
votes
1 answer

Why do Facebook iOS app is not receiving notifications for application requests?

I am sending a request dialog like this: [delegate.facebook dialog:@"apprequests" andParams:params andDelegate:self]; The notifications on desktop work great. But the Facebook iOS app doesn´t receive any notifications at all. (Neither…
Rigo Vides
  • 1,364
  • 13
  • 17
5
votes
1 answer

How to Send App request to facebook friends through facebook iOS sdk?

I am using facebook sdk for my my iOS facebook application. I want to send app request to multiple users. I am using following method for that purpose. NSArray* actionLinks = [NSArray arrayWithObjects:[NSDictionary dictionaryWithObjectsAndKeys: …
5
votes
1 answer

Inviting Facebook friends to custom uri

I wonder if it's possible to use FB.ui to invite friends to a custom page of my web application, but not to it's index. Apprequests method doesn't seem to have any parameters as customizable uri FB.ui({method: 'apprequests', message: 'yay!', …
Kourindou Hime
  • 167
  • 1
  • 10
5
votes
1 answer

App request doesn't work in iPhone browser but works in Facebook application

I'm sending an application request from my iPhone application and want the user to be redirected to the App Store page when he accepts the request. In the application settings I've added the "App on Facebook" item with fake Canvas URLs besides…
5
votes
0 answers

FB.ui apprequests dialog - popup goes blank and invitations are not sent

The initialization code: window.fbAsyncInit = function() { var bheight = $(document).height() + 50; FB.init({ appId: appid, frictionlessRequests : true, status: true, cookie: true, xfbml: true, …
1
2 3
11 12