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 downloaded Facebook SDK and my goal is to develop a complete Facebook client. I need to know if the SDK contains all methods and classes i have to use to develop a complete FB client. To see wall, news feed, friends, photos, videos and post and upload new element.

share|improve this question

1 Answer

up vote 0 down vote accepted

Yes, it does. However, those methods and classes are at a very low level. In order to have a well-functioning app you will need to build some very complex classes and behaviors to create a "complete" FB app.

Some issues to consider - the FB app does nothing for you in terms of storing data on the device, does nothing for you regarding background operations such as downloading images while the user does other stuff, does nothing for you in terms of displaying data such as creating a tableview of posts, etc. It essentially allows you to call most of the API methods from the site, and returns the data to you in JSON format. It helps some in managing the access token needed for authentication, and it helps display some pre-made dialogs.

You must build everything else.

share|improve this answer
so, the Facebook sdk give me the chance to receive data in JSON format, right? My work will be to parse and after show this data to the user, right? – Andrea Lufino Aug 31 '11 at 18:58

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.