I am trying to find more about custom URL mapping Schemes associated with a certain app. I checked a few SO discussions but have not been able to conclude. I have a few questions for URL Scheme Mapping,
Is there a way (like a certain command or a file that stores this info) to get a list of URL Schemes and the applications they map to on a given Apple iPhone or Mac? (I am guessing the answer is no - based on https://stackoverflow.com/a/10951866/1165727 but I want to confirm since this answer is quite old).
Is running "strings" command on an app the only way to find out the URL schemes that are associated with the app? (This is based on the comments to this answer - https://stackoverflow.com/a/5707825/1165727).
Is there a more complete list of URL Schemes than - http://wiki.akosma.com/IPhone_URL_Schemes
On OS X, you can use:
/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -dump
That shows the dump of the Launch Services database, which includes URL schemes and their mappings to apps.