Skip to content

Quick and dirty (literally) MZSearchHints (iTunes Store trending searches and search suggestions) implementation

License

Notifications You must be signed in to change notification settings

dgurney/mzsearchhints

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MZSearchHints

Quick and dirty (literally) MZSearchHints implementation that translates iTunes into Pornhub.

How to use

Fiddler works quite well for this type of thing. One way to redirect hints requests with Fiddler is to add the following to OnBeforeRequest:

if (oSession.HostnameIs("search.itunes.apple.com") && oSession.uriContains("/WebObjects/MZSearchHints.woa/wa/hints")) {
            oSession.hostname = "[server]";
            oSession.fullUrl = "http://" + oSession.url
}

For trending searches, add the following AutoResponder rule:

Match: https://search.itunes.apple.com/WebObjects/MZSearchHints.woa/wa/trends
Respond: http://[server]/WebObjects/MZSearchHints.woa/wa/trends/

Once you've set up Fiddler correctly and launched MZSearchHints, you should see some rather NSFW trending searches and search suggestions when using the iTunes Store search.

About

Quick and dirty (literally) MZSearchHints (iTunes Store trending searches and search suggestions) implementation

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages