Reputation: 1971
IOS Facebook SDK invite user message when i trying to invite anyone.
Missing App Link URL The app link used with this invite does not contain an Android or IOS URL. Developers are required the enter a URL for at last one platform.
Upvotes: 6
Views: 5565
Reputation: 2361
For Facebook SDK Invite, you need create a custom App Link. Facebook gave complete documentation for invites. Refer this link to create App link. Facebook provides a App Link Tool to create your custom app link.
In tool to create App Link, you need add some Custom URL scheme, App store ID and App name. Custom URL scheme looks like this: youAppName://fbFacebookAppID
. We also add fbFacebookAppID
in .plist
under URLScheme
in URLTypes
Upvotes: 6
Reputation: 118
AppLinkUrl is not the url of your app in the market.
FBSDKAppInviteContent *content =[[FBSDKAppInviteContent alloc] init]; content.appLinkURL = [NSURL URLWithString:@"your_website_link_with_metatags"];
Upvotes: 5