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.

I have a number of REST API Keys (Google Places, etc) that I want to secure. Reading Google Groups and SO it seems obfuscation isn't a solution, neither is using the Keychain, so how do you suggest encrypting/securing sensitive information when the IPA package can just be unpacked and read? (I don't want to rewrite the application in Objective-C).

share|improve this question
1  
Do you have the option to host your own server that can act as an API proxy? – Thilo Apr 14 '12 at 11:57
   
Thank you. What would stop someone from sniffing the transaction from the device and then abusing the REST api/calls directly to the proxy? I don't see how I can authenticate calls from a mobile device to the proxy, it's not as if I can whitelist the IP address etc! – user715697 Apr 14 '12 at 12:11
The API key would only be transmitted between your proxy and Google Places. The device does not have it. You authenticate the device using your own independent schema. This is the same like a web service making API calls on behalf of a user. – Thilo Apr 14 '12 at 12:48
Thank you. I understand, however, if the the mobile device is requesting myproxy.com?females=true&location=sanfrancisco for example, and the web services is returning the results in json, handling all the API key server side, nothings stops people from still sniffing the rest url and abusing the myproxy.com?females=true&location=sanfrancisco call, irrelevant of knowing the api key, as they don't need it now! How do I secure the handshake between the device and proxy so it approves calls just from my application? – user715697 Apr 14 '12 at 13:02
1  
You could have your own token-based scheme. Give every user a unique ID, obtained by login to your service. Also, sniffing can be prevented by using HTTPS. – Thilo Apr 14 '12 at 13:09
show 1 more comment

1 Answer

up vote 2 down vote accepted

If you have the option of hosting a web service yourself, you can have the device talk to your own server instead of Google's. It would act as a proxy: The device authenticates to your service using a scheme of your choosing and never gets to see the API key, which rests securely on your servers. The process is very similar to how it would work on a web site (where also the browser does not talk to the backend service provider directly, but the web server does it on its behalf).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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