Skip to content

Instantly share code, notes, and snippets.

@mnutt
Last active February 2, 2018 16:45
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mnutt/9937805 to your computer and use it in GitHub Desktop.
Save mnutt/9937805 to your computer and use it in GitHub Desktop.
Determining URL schemes of an iTunes app
  1. Get The Unarchiver (compression utility) here: https://theunarchiver.com/
  2. Opens iTunes for Mac and download the app from the app store
  3. Open Finder and navigate to Music/iTunes/iTunes Media/Mobile Applications
  4. Select the application you downloaded, and drag it into The Unarchiver to extract it
  5. Navigate into the extracted directory, then into Payload, and you should see an app
  6. Right-click the app and select "Show Package Contents"
  7. Find the file "Info.plist", right-click it and select "Quick Look"
  8. Look through the file for CFBundleURLSchemes (it'll be indented)
  9. Right below that should be , with each URL scheme inside a tag.

You may see schemes like "fb439523424243535", which are used for facebook auth. We don't recommend using them to link into apps.

@mnutt
Copy link
Author

mnutt commented May 1, 2014

deep linking screencast

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment