facebook-invite

FBSDKAppInvite sucessfully but can't send notification in fbaccount

余生颓废 提交于 2019-12-11 10:07:31
问题 My info.plist FBSDKAppInviteContent *content =[[FBSDKAppInviteContent alloc] init]; content.appLinkURL = [NSURL URLWithString:@"https://fb.me/450262455167157"]; //optionally set previewImageURL content.appInvitePreviewImageURL = [NSURL URLWithString:@"https://www.apple.com/my_invite_image.jpg"]; // present the dialog. Assumes self implements protocol `FBSDKAppInviteDialogDelegate` [FBSDKAppInviteDialog showFromViewController: self withContent: content delegate: self ]; //FBSDKAppInviteDialog

Facebook App Invite not received

懵懂的女人 提交于 2019-12-10 23:58:33
问题 I'm trying to send a facebook invite for my iOS application, but it never seems to get there and I can't figure out why. Here is the code I'm using: -(void)inviteFriend:(NSString *)facebookId { NSDictionary *parameters = @{ @"to": facebookId }; [FBWebDialogs presentRequestsDialogModallyWithSession:nil message:[NSString stringWithFormat:@"You've received an invite to my game!"] title:nil parameters:parameters handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) { if(error) {

How to get “who” invited using Facebook App Invite SDK for iOS?

两盒软妹~` 提交于 2019-12-10 13:24:12
问题 I've been trying to get the "who" invited someone on my app without success... Looked around FB docs and nothing. What I mean is: "User??" invites "Friend", "Friend" taps install on the FB dialog which takes him to App Store, where s/he installs my app. Once the app is installed, the "App Link" seems to not be passed on to my app and I can't find out who is "User??" (the inviter) IF the app is already installed in the iPhone and the "Friend" clicks "open", then the "App Link" info is passed

Invite Facebook friends to my iOS app that is not a game with custom UI

我只是一个虾纸丫 提交于 2019-12-08 11:03:36
问题 I want to invite Facebook friends the way Rounds iOS app work (i.e. show the list of Facebook friends in native UI and once the user taps 'Send Invites', i show the Request Dialog with the select friends and the user only press send to send the invites). This can be done using FBWebDialogs.presentRequestsDialogModallyWithSession( nil, message:"Message", title:nil, parameters:["app_id" : APP_ID, "to" : FRIENDS_IDs]) { result, url, error in //Do whatever } The problem here is that the only two

Facebook js sdk: “select a friend” dialog, then post to their wall? [duplicate]

五迷三道 提交于 2019-12-03 08:13:03
问题 This question already has answers here : Using Facebook API to invite friends? (4 answers) Closed 5 months ago . Needs to resolve that procedure. Now using the new javascript sdk, inside my "iframe tab". Select friend(s) Post in their wall. 1: not solved I couldn't find a way of poping a "select a friend" dialog, trough the new api. The only mention in FB.ui is about a "friends dialog" used to "invite a friend". Maybe I need a dialog ( which one ) to select a friend and than post? Ideally

Using Facebook API to invite friends?

好久不见. 提交于 2019-12-03 01:58:42
问题 I want an "Invite Friends" link on my website where you click it and you get a Facebook dialog that asks you to choose which of your friends you'd like to invite. Those friends then either get an application request, Facebook email or at least a wall post inviting them to join my website. I'm a bit confused over what is the proper way to do this. It seems the only non-deprecated way now is through the Requests Dialog. So I call the FB.ui Javascript method like the example they give: FB.ui({

Facebook js sdk: “select a friend” dialog, then post to their wall? [duplicate]

这一生的挚爱 提交于 2019-12-02 22:05:40
This question already has answers here : Using Facebook API to invite friends? (4 answers) Needs to resolve that procedure. Now using the new javascript sdk, inside my "iframe tab". Select friend(s) Post in their wall. 1: not solved I couldn't find a way of poping a "select a friend" dialog, trough the new api. The only mention in FB.ui is about a "friends dialog" used to "invite a friend". Maybe I need a dialog ( which one ) to select a friend and than post? Ideally multi-friend selector so I can post to as many friends as a user can choose? 2: solved ( any other solution is welcome ) To post

Facebook App Invite, Invite Friends

空扰寡人 提交于 2019-11-29 00:47:20
问题 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 applink URL: https://fb.me/****412097***** No previewImageURL although I saw my app's image on the dialog. Code: //Inside onCreate - callbackManager = CallbackManager.Factory.create(); mInvititeDialog = new AppInviteDialog(this); mInvititeDialog

App requests successful, but no notification shown

醉酒当歌 提交于 2019-11-27 19:08:42
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 response is successful, response.to shows multiple ids. So sending these invites works like it should. The problem is that these apprequests are not shown up as notifications like they usually do, instead the only place to find them here . Has the API changed? Looking for answers has given me no results, though I did find this bug report from February 15th 2013. Is Facebook

App requests successful, but no notification shown

ぃ、小莉子 提交于 2019-11-26 19:46:28
问题 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 response is successful, response.to shows multiple ids. So sending these invites works like it should. The problem is that these apprequests are not shown up as notifications like they usually do, instead the only place to find them here. Has the API changed? Looking for