adsurbum
adsurbum

Reputation: 3177

facebook deep linking (app links) to ios app doesn't work

I can't figure out how to make facebook, when sharing url with my website, to show "Open in the My app" button. (like in documentation https://developers.facebook.com/docs/applinks/ios)

I'm adding to the header

<meta property="al:ios:url" content="myapp://" />
<meta property="al:ios:app_store_id" content="id..." />
<meta property="al:ios:app_name" content="App name" />

Deep linking button is switched on in the dev.facebook settings.

My app have myapp:// in the schema and is opened with such a url.

Need i something more?

Upvotes: 1

Views: 2957

Answers (1)

emotality
emotality

Reputation: 13045

enter image description here Bundle ID: same bundle id as in your app (Info.plist)

URL Scheme is the name only, no :// (In your Info.plist under URL Schemes)

iPhone/iPad store is the id in your iTunes link like the following:

https://itunes.apple.com/app/appname/id55####003?ls=1&mt=8

Upvotes: 3

Related Questions