-2

Possible Duplicate:
steps of integrating Facebook in android

I want to integrate Facebook in my application where i want to share a link..can somebody tell me step by step how to integrate Facebook in your application using Facebook SDK...

Thanks in advance..

Community
  • 1
  • 1
android
  • 386
  • 1
  • 8
  • 21

1 Answers1

1

I recently started an app that has Facebook integration. The link that Rosalie and basicsharp sent you is a step-by-step guide to getting Facebook integrated into your app. It took me a while to understand how the API fits together. The following link explains the Graph API, which is the core API that you will be using: Facebook Graph API

Don't expect to get it right after 5mins, it will take time! Here is an overview of what you need to do to connect your app to facebook.

  1. Get the facebook-android-api via Git(Just download it, it's extremely simple)
  2. Create an existing project using the facebook api
  3. Add Facebook Api as a reference via project options
  4. Get your app's Hash key via cmd prompt(This is the trickier part, not going into it because there is an abundance of information regarding this topic)
  5. Create Facebook app(On Facebook)
  6. Do the code - Facebook developer mobile

And there you have it.

Community
  • 1
  • 1
Jannik
  • 332
  • 1
  • 3
  • 12