Facebook App Invites iOS v4 SDK error

孤者浪人 提交于 2019-12-01 06:25:08
Hemang

You need to create an AppLink URL from here/

  1. Choose your application from the list

  2. Fill up the form with equivalent information

  3. Click on Next !

  4. You're done.

Now, you can use that link with your code for invite.

self.inviteContent = [[FBSDKAppInviteContent alloc] initWithAppLinkURL:[NSURL URLWithString:APP_LINK_HERE]];
[FBSDKAppInviteDialog showWithContent:self.inviteContent delegate:self];

The format of that link will be something like https://fb.me/xxxxxxxxxxxxxxxx

All xs will be replace by a digit.

Try to add also og:title and og:type properties, it works for me

<meta property="og:title" content="My App" />
<meta property="og:type" content="website" />
KarunPant75

Adding meta tags would solve this, this is snippet of html from app link created via FB. Fb is adding some extra meta tags on it's app link url page, and it also redirects direct to itunes if opened on a browser.

<html>
<head>
	<title>app name</title>
	<meta property="fb:app_id" content="your fb app id" />
	<meta property="al:ios:url" content="Your app link url" />
	<meta property="al:ios:app_name" content="your app name" />
	<meta property="al:ios:app_store_id" content="your app id" />
	<meta property="al:web:should_fallback" content="false" />
	<meta http-equiv="refresh" content="0;url=https://itunes.apple.com/WebObjects/MZStore.woa/wa/redirectToContent?id=your app store id" />
</head>
<body>
	Redirecting...
</body>
</html>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!