Questions tagged [apprequests]
180 questions
4
votes
2 answers
Is it possible to customize the apprequest notification message similar to BranchOut?
I've noticed that BranchOut requests have a custom notification message and stand apart from other app requests in my notifications.
Is this because BranchOut has a special partnership with Facebook?
The documentation states that the "message" value…

Lyle Stevens
- 41
- 3
4
votes
2 answers
User to user app request doesn't appear in notifications
This is very weird. I know that if you create app to user created app-request, it doesn't appear anywhere..
but in this case I tried the FB.ui dialog to create user to user app request. Like this:
FB.ui({method: 'apprequests',
message: 'I invite…

Jānis Zaržeckis
- 51
- 1
- 3
4
votes
3 answers
Creating facebook apprequests
I'm trying to send a message from an app to a user when a specific event happens. Right now I have this code
$param = array(
'message' => 'XYZ shared a file with you',
'data' => 'additiona_string_data',
'access_token' =>…

slash197
- 9,028
- 6
- 41
- 70
4
votes
3 answers
Invite friends for a website app (FB.ui apprequests)
I have a problem with making apprequests for my website application. I can send invite with FB.ui "apprequests" method but this request is not shown on Facebook. It looks like it is blocked because it fires notification icon but in a second…

Andrzej Sawoniewicz
- 1,541
- 2
- 16
- 18
4
votes
1 answer
Notification for facebook app requests not showing up
I created an application for a website and gave it a site url. (The site url is actually not real. It is overridden in my local hostname file for development purposes. Does this matter?).
I used the sample code for creating a request dialog to…

Nick Retallack
- 18,986
- 17
- 92
- 114
4
votes
2 answers
iOS Facebook api, apprequests sent but not receiving?
I'm currently working on an iOS app, and I use apprequests to bring up the dialog to send request. I can see everything working fine (I got the dialog complete thing) but user is not getting the request! I'm working with a test FB app (not public),…

Ricky Lee
- 41
- 1
- 2
4
votes
1 answer
How to detect and ban IP address making too much requests with Spring Boot?
Does anyone know how to detect and ban the IP address or addresses automatically from which a lot of requests come in a very short period of time?
Example: someone has made a script to execute different special characters on an index page to try to…

Dario Sagud
- 81
- 1
- 8
4
votes
1 answer
facebook app request notification not showing up in Facebook iOS app for mobile web app
I have a Facebook app that is configured as Facebook canvas app and a website with site and mobile site URLs
When the app sends apprequests (invitations) they only show up in the recipient's notifications in the desktop browser and not in the…

techsMex
- 594
- 4
- 16
3
votes
1 answer
Facebook apprequests message in the preview is not displayed on the reciepents notification bar.
I am using facebook new requests 2.0 for sending apprequests via application. Now I have a custom message which is shown in the preview while sending the invitations, however, on the recipient side the message is not shown and a standard message is…

Usman Ashraf
- 35
- 4
3
votes
2 answers
Adding a apprequest from user
I am trying to add an app request from a user using Koala/Omniauth
@graph = Koala::Facebook::API.new(current_user.omnitoken)
@graph.put_object("me", "apprequests", {:appid => MY_APP_ID, :to => USER_ID, :message => "Come join me!"} )
I dont get any…

hso
- 345
- 3
- 19
3
votes
0 answers
Inviting friends to my app from c# codebehind
I know how to invite friends to my app using the following javascript:
function sendRequestToManyRecipients() {
FB.ui({method: 'apprequests',
message: 'My Great Request'
}, requestCallback);
}
I'm using the following c#…
3
votes
4 answers
How do I solve 'Request was aborted after waiting too long to attempt to service your request error' generated from App Engine
In general we have around 2 requests / second. However, after we pushed notification to 3000 users, we suddenly get to 120 requests / second. Unfortunately around half of those users were getting 5XX server errors, meaning half of the users who came…

andy
- 195
- 1
- 2
- 15
3
votes
0 answers
How do I retrieve the object_id of a facebook apprequest?
In our app, we send AppRequests with "action_type"="send" and "object_id"=. The object_id is reflected in the apprequest UI, so we're doing that correctly. But when we retrieve them on the recipient side with a GET to /me/apprequests there is no…

Ted Howard
- 43
- 5
2
votes
1 answer
How to make apprequest with custom text, like MyCalendar?
How to make this request ?
(i mean custom text)

Romka
- 76
- 5
2
votes
1 answer
Detect Frictionless Request UI Popup
I am trying to create a request flow in our canvas app that uses frictionless requests to allow sending requests while in fullscreen.
The problem I don't see a solution for is how to detect when sending a request will pop up a UI dialog, and when it…

Nathan Wolf
- 43
- 5