Questions tagged [facebook-app-requests]

205 questions
21
votes
5 answers

Facebook App Invite, Invite Friends

I switched to Facebook 4.0 in order to implement AppInviteDialog for Android. I followed this reference. The dialog appears, I can select friends, invite them, I get the onSuccess() call, but my friends don't get the invite. I have used the below…
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…
12
votes
2 answers

Send App request to all friends in Facebook using 'Requests Dialog' in Android

I want to know how to send app request to all my facebook friends from android app. I tried in graph API. But, couldn't get it done. https://graph.facebook.com/apprequests?ids=friend1,friend2&message='Hi'&method=post&access_token=ACCESS_TOKEN I…
9
votes
2 answers

presentRequestsDialogModallyWithSession does not work, but gives good result

When I use the webdialog for a friendrequest, everything is going fine, except no request or anything is made. The code: NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys: …
Ruud Visser
  • 121
  • 1
  • 4
9
votes
1 answer

Facebook App notifications on mobile

My Facebook app sends notifications with some information to its users with Notifications API. However, these notifications are only received on desktop, but not on mobile devices. How can I reach all the mobile users community?
user411103
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

Send notifications to people that have not installed my Facebook app

MyApp users can select a Facebook friend and send them an ANONYMOUS Christmas wish. It is extremely important that the identity of the one that sends the wish is never revealed. Everything is OK as long as the recipient is as well a MyApp user,…
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

How to check if an FB AppRequest has been clicked on or not?

One can get his app's AppRequests using FB Graph. How can I get if the receiver clicked on any of the AppRequests? Edit: I can't pass additional parameters in the AppRequest, it's an "AppInvite" and through AppLinks the receiver is taken to the…
6
votes
3 answers

Facebook Requests Dialog: Sending Requests Failed

I just copy the source codes from https://developers.facebook.com/docs/reference/dialogs/requests/, JavaScript Example section, change to my API ID, then I can see the Dialog. but when I sent a Request to One or More Users, I always got the…
lhjava
  • 107
  • 2
  • 6
6
votes
3 answers

how to read facebook signed_request to get user_id

According to Facebook - Authentication within a Canvas Page Document, they say that we will be getting a signed_request which consists a JSON object. Now they say that signed_request can be get through $_POST['signed_request'] I agree its working…
5
votes
0 answers

How to integrate FB iOS SDK 3.1.1 with App Requests

I've been looking for a solid answer that explains how to keep 3.1.1 in my project but also implementing the app request dialog. What I've read says I need to import Facebook.h and call it like [self.facebook dialog:@"apprequests" andParams:params…
Wes
  • 419
  • 1
  • 4
  • 18
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
2 answers

Changing the notification-text on Facebook app requests

I've noticed that some Facebook apps, like BranchOut, have customized notifications messages. When an app request is sent and appears in the top left notification center the text on the notification is something they seem to control on their own,…
Erik Honn
  • 7,576
  • 5
  • 33
  • 42
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…
1
2 3
13 14