Questions tagged [facebook-invite]

An invitation to the popular social networking site, Facebook

A Facebook invite is an invitation to become a member of the popular social networking website known as Facebook

84 questions
1
vote
1 answer

FBSDKAppInvite sucessfully but can't send notification in fbaccount

My info.plist FBSDKAppInviteContent *content =[[FBSDKAppInviteContent alloc] init]; content.appLinkURL = [NSURL URLWithString:@"https://fb.me/450262455167157"]; //optionally set previewImageURL content.appInvitePreviewImageURL = [NSURL…
Harshal Valanda
  • 5,331
  • 26
  • 63
1
vote
0 answers

Facebook app invite iOS not working in production

I have a strange issue, I am trying to implement iOS native Facebook invite. It is working well with Testers, but unfortunately it is not working in production. I read several articles on stackoverflow so yes I have : created a Facebook canvas…
1
vote
0 answers

how to tell if user responded to my facebook request?

I don't really understand what i should do after invitable friends call. So this is the procedure till im stuck: I have a facebook canvas app, but the app itself is mostly ios/android native so the canvas is for redirection…
totothegreat
  • 1,633
  • 4
  • 27
  • 59
1
vote
0 answers

Facebook App Invites iOS SDK v4.1 App Crashes while Return to App

I am using Facebook iOS SDK v4.1 in iOS application. Application is in Development State. I am trying to invite Facebook friends to share Application. I am following This Document. I have Created appLink. Also Clear about AppLink. Using Facebook…
1
vote
1 answer

Sending invitation with iOS Facebook SDK

I'm trying to send out invites with Facebook SDK, this is my code: FBSDKAppInviteContent *content =[[FBSDKAppInviteContent alloc] initWithAppLinkURL:[NSURL…
Nika Kasradze
  • 2,834
  • 3
  • 25
  • 48
1
vote
1 answer

How to increase the number of friends in Facebook Android App Request Dialog

So I'm using the recent version of the FB SDK I included as a maven dependency: compile 'com.facebook.android:facebook-android-sdk:3.20.0' I'm trying to send an app request, but it only suggests 6 friends for me. Is there any way to make it suggest…
Karim Varela
  • 7,562
  • 10
  • 53
  • 78
1
vote
2 answers

Invite via Facebook is not working in Signed apk

I got Facebook invite working in unsigned apk. But when I signed the apk it showing a Dialog saying "App would like to access your public profile and friend list" and when I press OK nothing happens. What should I do? Any Suggestions?
Divya
  • 555
  • 1
  • 4
  • 15
1
vote
1 answer

Inviting repeatedly friends

When using the FB.AppRequest method of the Facebook SDK for Unity without defining a list of recipients, users are prompted to send requests to their friends. On the Facebook canvas a list of all user friends is being prompted but on both iOS and…
georgepiva
  • 874
  • 9
  • 29
1
vote
0 answers

How to create different facebook notification when inviting friends in android app?

I had successfully made my android app invite friends ; refer to : https://developers.facebook.com/docs/games/requests/v2.0 WebDialog requestsDialog = new WebDialog.RequestsDialogBuilder(ctx,s, params).build(); requestsDialog.show(); The…
1
vote
0 answers

Getting list of invited Facebook friends with Facebook API

I've adapted Facebook's example code to let me show the list of invited users... but I can't get a list. Can someone help me with the right syntax to get a list of invited friend? This is what i've come with so far: $invite =…
1
vote
3 answers

Unity Facebook apprequest works but no notification shown

How do I make my mobile game send a request that is shown as notification like in Candy Crush Saga game. I went through this App requests successful, but no notification shown but can't find the solution. I don't know what to put in my canvas…
1
vote
0 answers

How can i change the fbwebdialogs title?

If i go straight to the point then please help me how can i change the title of the FBWebdialogs of facebook invite friend request.i am using Facebook SDK 3.12 . Is it possible to change or any limitations ? If possible then please suggest me how…
Emon
  • 452
  • 3
  • 11
  • 21
1
vote
2 answers

Why doesn't my Facebook app send Invite requests?

I've been working on this for a few days and I can't find what's missing. Does anyone have any advice? It seems like its missing something but I have no idea what it would be. I'm not receiving any errors. The share button works (to share to your…
1
vote
0 answers

Send app invite requests to friends via Javascript SDK

How do I send facebook app invites to multiple friends of the authenticated user via Javascript SDK (I'm not using the facebook Request dialogs because I need a slightly customized dialog whereby I could allow a different action for those friends…
Rajat Gupta
  • 25,853
  • 63
  • 179
  • 294
1
vote
1 answer

Is this the best way to integrate and use the Facebook API "toolset" in my quiz game?

Im currently building a simple time based quiz game with Javascript. In this game im looking to enable the option of being able to challenge your facebook friends. This has naturally had me look at the Facebook (API) tools available that would allow…