Reputation: 462
I need invite facebook friends to my app and get selected facebook id. I use this code
let content = FBSDKAppInviteContent();
content.appLinkURL = NSURL(string: "https:// fb.me/571196839709216");
FBSDKAppInviteDialog.showFromViewController(self, withContent: content, delegate: self);
but after selected user and send I recv in delegate just "completed"... How I can invite user and get your fb id?
Upvotes: 0
Views: 82
Reputation: 3141
You cannot tell which users are invited, you can barely tell they finished the process...
Upvotes: 1