I'm managing the development of an iPhone app that relies on web services to provide catalog access. My main security concern right now is someone accessing my web service and replicating/scraping my entire catalog (right now, it doesn't contain anything proprietary - but that would change).
In short, I need to limit the web service access to my iPhone app. While the app is in beta, I could easily get the iPhone device ID and limit it to only the 5 developers. But when the app goes live, I don't want (and not sure I can legally) collect device IDs for authentication.
I tried limiting access by the user-client string - but that can be spoofed.
My next step is some kind of shared pass phrase - but again, that can be sniffed.
Any other ideas?
TIA,
Guy