The default Apple app.
- URL Scheme
- Launch Center Pro Actions
- Bang On Custom Search URL
- Drafts Actions
- Mr. Reader Services
- Bookmarklets
itms-apps://
phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term=
Example:
itms-apps://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term=Twitter
http://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term=
Example
http://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term=Twitter
Note: Using the itms-apps:// protocol will launch your search in the iOS App Store while using http:// may launch the search in iTunes. One possible downside to using itms-apps:// is that it will not work on OS X or Windows so for potentially cross-platform tools like Bookmarklets you either need to make it platform specific or build it to use the correct URL depending on the platform like I do in the bookmarklet below.
If there's a better way of handling this or if you can fill in any more information about the App Store URL schemes I'd really appreciate the help!
http://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term=[clipboard]
http://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term=[prompt]
itms-apps://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term=%@
Name: Search App Store for Title
URL:
itms-apps://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term=[[title]]
Note: This action will search the App Store for whatever is on the first line of your draft.
To install the action copy and paste the following URL into your iOS browser's location bar and hit enter • Help
drafts://x-callback-url/import_action?type=URL&name=Search%20App%20Store%20for%20Title&url=itms-apps%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZSearch.woa%2Fwa%2Fsearch%3Fmedia%3Dsoftware%26term%3D%5B%5Btitle%5D%5D
App Name: Search App Store for Selection
Protocol: itms-apps://
URL Scheme Template:
itms-apps://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term={[TEXT-SELECTED]}
Visibility:
Standard Menu: Off
Text Selection Menu: On
Link Menu: Off
Important Note: Bookmarklets that take advantage of your text selection work differently or don't work at all in different browsers. Please see the guide for further details and workarounds.
javascript:if(navigator.userAgent.match(/(iPhone|iPod|iPad)/i)){location.href='itms-apps://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term='+encodeURIComponent(window.getSelection());}else{location.href='http://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term='+encodeURIComponent(window.getSelection());}This bookmarklet also works correctly on OS X (& probably Windows, haven't tested it yet).
javascript:var%20search=window.prompt('Search%20App%20Store%20for...');if(navigator.userAgent.match(/(iPhone|iPod|iPad)/i)){location.href='itms-apps://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term='+encodeURIComponent(search);}else{location.href='http://phobos.apple.com/WebObjects/MZSearch.woa/wa/search?media=software&term='+encodeURIComponent(search);}