I am trying to determine how to extract or get programatically the Custom URL Scheme from a application .ipa file. Is this possible?

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

Yes, this is possible. First, unzip the .ipa file. (you can rename it with .zip to do this). Then, inside the .ipa file, you will find there is a Info.plist file. You can parse that file, look for "CFBundleURLSchemes" and you will see first the app id followed by the Custom URL if one is defined for the app.

link|improve this answer
thanks this approach worked for me! – Jose Jul 27 '11 at 14:18
feedback

Yes, you can just unzip the ipa (this just a zip file), open the < application >.app and look for the info.plist. It should contain any custom app URL schemes, if the app supports it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.