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 am trying to test the single sign on, so I wanted to download the Facebook application to the iPhone simulator.

Where can I download the Facebook application for iPhone and how can I place it on the simulator?

share|improve this question

2 Answers

up vote 10 down vote accepted

Unless you are the developer of that app, and more to the point, you have the source code to build from scratch, you cannot take an app downloaded through the App Store and run it in the simulator. Aside from likely being against Apple's terms and conditions, apps built for devices are built for ARM processors, while apps built for the simulator are actually Mac apps and built for the i386 platform.

I think you'll have to download the Facebook app to your device via iTunes, then build your app for an iOS device and run it on your device via Xcode. You'll need a developer certificate, of course. That's the only way you'll be able to test SSO with the Facebook app, I believe.

share|improve this answer
Thanks for your replied .... So i need to buy or borrow a real device first.... – Simon Oct 11 '11 at 2:06
1  
Yep, you have to test on a real device before you can submit to Apple anyway. A refurb iPod touch is cheap. – MarkGranoff Oct 11 '11 at 2:14
Yeah but it would have been nice to have it on the simulator ... makes life easy ... hope FB can provide some basic test app code that we can build from scratch and run it on the simulator for testing! – Dev Mar 15 '12 at 9:53

Now that iOS 6 is released, you can authenticate with Facebook in the simulator directly. Example of how it can be done is on the Facebook developers site: https://developers.facebook.com/docs/tutorials/ios-sdk-tutorial/authenticate/

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.