facebook-invite-friends

How to Invite Friends From Facebook to Android app ? - Gives Error

*爱你&永不变心* 提交于 2020-01-01 18:17:45
问题 I am working on an Android App. I am working to add "Invite Friend" feature to my app. It goes to my AppLinkUrl successfully but Show an Error. My Manifest code is as below- <!--Abhishek Tandon FB invitation Code--> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="com.tandon.mynewsapp//https://my_fb_url_here" /> </intent-filter>

IOS Facebook Friend Invite Not Working in facebook sdk

旧巷老猫 提交于 2019-12-11 02:28:10
问题 i m working on project where i require invite facebook friend but notification is not sent in facebook account. NSString *frindId=[[self.checkitem1 objectAtIndex:indexPath.row]valueForKey:@"id"]; NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"Come check out my app.", @"message", frindId, @"to", nil]; [FBWebDialogs presentRequestsDialogModallyWithSession:nil message:[NSString stringWithFormat:@"Come check out my app."] title:@"MyWorkOut" parameters:params

iOS Facebook app invite: error

怎甘沉沦 提交于 2019-12-10 18:27:50
问题 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 error:- Error Domain=com.facebook.sdk.core Code=9 "The operation couldn’t be completed. (com.facebook.sdk.core error 9.)" in below FBSDKAppInviteDialogDelegate delegate method func appInviteDialog(appInviteDialog: FBSDKAppInviteDialog!,

How to Invite Friends From Facebook to Android app ? - Gives Error

我的未来我决定 提交于 2019-12-04 15:34:46
I am working on an Android App. I am working to add "Invite Friend" feature to my app. It goes to my AppLinkUrl successfully but Show an Error. My Manifest code is as below- <!--Abhishek Tandon FB invitation Code--> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="com.tandon.mynewsapp//https://my_fb_url_here" /> </intent-filter> And below is my Code for InviteFriend Activity- //Abhishek Tanodn FB code for InviteFriend Activity

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

Facebook App invites notification not working in ios

我与影子孤独终老i 提交于 2019-11-27 04:28:44
问题 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 created test users for testing this app. This code works fine, it launches a dialogue box, showing the friend list and also shows that the app invite is sent but when I check it in friends account it doesn't show any notification. My Info.plist File I