Can I avoid baking my Twitter API consumer secret into my iPhone app binary?
问题 I'd like to do OAuth for Twitter from an iPhone app. But doing so implies that I need to have my API secret alongside my API key baked into the application binary. This is obviously undesirable. Facebook supports the notion of a session proxy to get around the parallel issue with their API. Can I do something like this for Twitter? 回答1: Short answer: No. OAuth was created for and works really well for web applications. It's a square peg in a round hole for native applications. Specification 1