Questions tagged [facebook-app-requests]

205 questions
4
votes
2 answers

Send Facebook App Request/Invite using Graph Api

I have the following code that would get ur friends list using graph api function getFriendsList(){ $response = $this->api('/me/friends'); return $response; } This returns friends id and name. using graph api I then execute this…
ivias
  • 249
  • 1
  • 3
  • 15
4
votes
1 answer

How to send fb app invites like Kiwi App

I got a app invite on fb from a friend via Kiwi app. When I clicked this notification it redirected me to their Google Play Store app page. I downloaded it and signed up with facebook giving basic info, friend list and email address…
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…
4
votes
3 answers

facebook apprequests dialog error “An error occurred. Please try again later.”

I was searching all possible topics but now solution works for me. There is my code, which works in all browsers except Chrome. There is just window with An error occurred. Please try again later.. It is identical code from FB documentation.
tttpapi
  • 887
  • 2
  • 9
  • 32
3
votes
0 answers

Instagram Basic Display, exchange token error on live

instagram_graph_user_profile and instagram_graph_user_media are approved but the check mark under Products -> Instagram is not green. Business is verified. Instagram test users work fine! We don't have instagram_basic permissions, but as we…
hugo
  • 63
  • 4
3
votes
0 answers

How to simulate the Facebook Swipe to dismiss effect in images with Android?

I'm using the Fresco library, com.facebook.fresco:fresco:0.10.0. I'm trying to combine two effects that use the Facebook Application. Zoom To Point Swipe To Close I created DoubleTapZoomableController class which extends of…
Johanna A.
  • 63
  • 7
3
votes
0 answers

Facebook iOS App invite not receieving push notification

I have implemented Facebook latest sdk for App invite feature in my iOS app. I am able to send the invites to my facebook friends, but my friends does not getting push notifications for it. Although they can see it received in Settings>App>App…
Parth Pandya
  • 1,460
  • 3
  • 18
  • 34
3
votes
2 answers

Facebook returning error '(#200) Requires extended permission: publish_actions' even after getting 'publish actions' permission approved

Hi I got 'publish_actions' permission approved for my Facebook App. But when any user accessing this app, it is not prompting for 'post on your behalf on Facebook' permission. Unless this when any user try to comment on Facebook using this app,…
3
votes
2 answers

Facebook "apprequests" filters not working on android

I am trying to show an App request dialog that shows a list of friends that are not users of my app to send invites. This is how i am going about it. Bundle parameters = new Bundle(); parameters.putString("message", "Send Request"); …
3
votes
1 answer

Facebook AppRequest handle on unity3d game

I am trying to make a game in Unity3D with new facebook unity sdk. I am able to send an AppRequest to the friends in my list. But my doubt is, after my friends has downloaded the same game, how can I communicate with friends using the AppRequest.…
3
votes
2 answers

Can't Create Facebook App

First time trying to create a Facebook app. Browsed to https://developers.facebook.com/apps and it had a link for to register before creating a link where you just accept the T&C's. Now it says, "Create an app to start..." But there is no…
David Strydom
  • 33
  • 1
  • 3
3
votes
2 answers

request id is null in Handle the Incoming Notification in facebook android sdk

I'm trying to handle incoming Notification in facebook. ref : http://developers.facebook.com/docs/howtos/androidsdk/3.0/app-link-requests/ Code : public class MainFragment extends Fragment{ private static final String TAG = "MainFragment"; private…
3
votes
2 answers

How to get user who invited a friend?

My website has a sponsorship system that allows users to invite friends by email (with a link that refers sender) because of some bonus ("if X people subscribe because of you, you win this and that"). I want to do the same with the Facebook side of…
Meowcate
  • 371
  • 1
  • 4
  • 12
2
votes
0 answers

My Facebook Messenger Bot is completed, but isn't visible to be approved

We built a Facebook Messenger bot that works perfectly. The bot is only available to developers and testers and can't be made public until it's approved. We submitted it for approval but the approval person obviously didn't have access to the bot…
Feature
  • 163
  • 1
  • 1
  • 6
2
votes
0 answers

I can't send a Facebook game request using Graph API v2.8

I've spent a lot of time trying to send a game request from the (latest) JS API, using the Graph API v2.8, but nothing seems to work. I've used only common OG, since custom OG are deprecated. When I use "turn" instead of "send" as the action type,…
1
2
3
13 14