ajjnix
ajjnix

Reputation: 462

facebook invite friends to app and get id selected users

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

Answers (1)

Sean Lintern
Sean Lintern

Reputation: 3141

You cannot tell which users are invited, you can barely tell they finished the process...

Upvotes: 1

Related Questions