Reputation: 3177
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
Reputation: 13045
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