I use the KeyChain to store user's username and password. But I want to store my application's username and password to access my web service. How can I store this securely?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
There is no such thing as "some sort of key that only allows your app to access your web service." This is not a solvable problem. It is always going to be possible for clients other than yours (or modified versions of yours) to connect to your web service if used by an authorized user. You must account for this on the server side. If your point is that you want to provide some thin layer of obfuscation to prevent trivial access to your service, then you would put the credential in your code. You definitely don't want to put it in Keychain, since that is per-device, and you want per-application. I would recommend a long, random string of bytes. |
|||||||
|