Questions tagged [facebook-invite-friends]

A list of friends that can be invited to install a Facebook game.

/{user-id}/invitable_friends in Graph API

Since Graph API v2.0, /me/friends returns a person's friends who also use the app. You may use the Requests Dialog to invite people to play a game. However, if you want to build a custom multi-friend selector within your game, you need to use call /me/invitable_friends which returns a ranked list of a person's friends who do not play the game, along with a token which can be passed to the Request Dialog in order to invite them.

Invitable Friends Docs

50 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…
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…
10
votes
1 answer

facebook app invite using ionic (cordova phonegap)

I would like to implement Facebook app invite into my mobile app so users can invite their friends to my app. I am using a hybrid framework called Ionic (cordova) but can't find any way to invite friends. There are Facebook plugins from ng-crodova…
9
votes
2 answers

Change orientation of ios keyboard?

Im using phonegap.build and i need to do the following on my game app: The game is forced to landscaped mode at all time, and it has no canvas version of it, this is ios and android only game, and i use it with phonegap. With the facebook-connect…
8
votes
4 answers

Facebook App invites notification not working in ios

I had implemented Facebook App invites in Demo Application. It worked fine but did not get notification. I have added all detail in my question, now can anyone tell me what is the issue in my code and what should I do to resolve this. I have …
6
votes
1 answer

FBSDKAppInviteDialog invite successfully sent, but no notifications received

What I'm doing? I'm trying to send invitation to my Facebook friends using FBSDKShareKit. Is it working? YES – but only with test users (and not with real users). What's the problem? Getting push notification for the invitation Getting…
Hemang
  • 26,840
  • 19
  • 119
  • 186
4
votes
0 answers

App invite does not show appInvitePreviewImageURL image (iOS , Android)

Initially my app does not included appInvitePreviewImageURL, so invite dialog was showing blank image. Now i have added appInvitePreviewImageURL with a valid url, i can open image in browser. Still i can't see the image App invite dialog. i'm using…
4
votes
1 answer

"URL with custom scheme" in iOS data and "URL" in Android data in facebook

I have an app which is available now on both iOS and Android. The iOS_app_url like https://itunes.apple.com/us/app/.../id... The Android_app_url like https://play.google.com/store/apps/details?id=... Now I would like to add the "invite friends"…
William
  • 281
  • 3
  • 9
4
votes
1 answer

Android Invite friends to App (open play store link) using Facebook Sdk 3.1

I am trying to send invitation to facebook friends using Facebook sdk 3.1. Here is code: Bundle params = new Bundle(); params.putString("message", "Come join me in the GuessWhat!"); params.putString("to", TextUtils.join(",",…
Nouman Bhatti
  • 1,777
  • 4
  • 28
  • 55
4
votes
0 answers

Facebook game invitable friends search box

In the facebook docs for invitable friends, https://developers.facebook.com/docs/games/invitable-friends/v2.3 they recommended "Even though the friend list provided by the invitable friends API is a ranked list sorted by relevance to the current…
3
votes
0 answers

Facebook has deprecated the Open Graph Objects and Stories What are alternatives?

As I am observing from some time, Facebook has started to phase out quite allot of usable features from their Platform. The Open Graph Custom Stories (Object & Actions) Support is one of them. They even restricted usage of score Api. Which means we…
3
votes
0 answers

Facebook SDK version 4.28.0, App Invites is deprecated

Facebook SDK version 4.28.0, some products will sunset With the release of the Facebook SDK version 4.28.0, App Invites is deprecated. It will be supported until February 5, 2018. Facebook has removed AppInvitation from latest SDK. Does anyone…
Suraj Sonawane
  • 2,044
  • 1
  • 14
  • 24
3
votes
0 answers

Changing the "Facebook App-Invite" dialog language

I am using App Invites in my app to let users invite their friends to use the app, but today I noticed a problem. The app invite dialog is in a foreign language (with cyrillic letters in my case, as in the photo below). Is there a way to change it,…
3
votes
2 answers

iOS Facebook app invite: error

I have to implement Facebook invite in my iOS app. I am following below reference link: https://developers.facebook.com/docs/app-invites/ios and created app link as per below link: https://developers.facebook.com/docs/applinks I am facing below…
2
votes
0 answers

AppInviteDialog for fb users is not working in android above 6.0

I want to invite Facebook users. I used below code it is working fine for below android version 6.0. It is performing facebook login after login it is not displaying the friend's list. Here is my code if (AppInviteDialog.canShow()) { …
1
2 3 4