vote up 2 vote down star

Hi

I'm looking for a solution similar to the iPhone Facebook Connect (http://wiki.developers.facebook.com/index.php/Facebook%5FConnect%5Ffor%5FiPhone) for the BlackBerry platform. Basically, I need my users to authenticate against Facebook from within a native BlackBerry application (so, not a Web based mobile application). Is there a library I could use, and if not, what will be the correct approach to achieve this?

Thanks in advance!

flag
Did you get this to work? Would appreciate some help. Thanks. – lostInTransit Nov 2 at 9:41
lostInTransit - not yet (got some unexpected work to do). Once I get this to work I'll update here. – Gadi Nov 8 at 14:35

3 Answers

vote up 1 vote down check

As you can see in Facebook Platform for Mobile, options for BlackBerry are:

Other option is try to port JavaFB from J2SE to J2ME

link|flag
Coldice - thanks. While the SMS interaction API and the FB Connect for Mobile Web do not answer my needs, I think the option of porting the JavaFB would work (I found an even closer project - fbconnect-android.googlecode.com Android Facebook), I'll try that approach. – Gadi Nov 1 at 7:05
You're welcome! – coldice Nov 1 at 10:04
vote up 1 vote down

I managed to go through Facebook Connect authentication within my BB app. After cracking my head for three days I realised that it is the URL that is the culprit!

Basically these are what you need (assuming you are developing for 4.5 platform):

  1. Using Browser Field, do a POST to http://m.facebook.com/login.php (the mobile version of Facebook) passing all the necessary arguments as per the Desktop application counterparts (one challenge is to get the signature generation correct).
  2. Once the User successfully grants access, capture the URL of the success screen. You will obtain your auth_token.
  3. Do a POST to the REST server to obtain the session key and secret given the auth_token you obtain.
  4. Save the returned session key and secret, persist it, and wholla! your app is up and running.

I am developing a custom LoginScreen and FacebookFacade object to incorporate the first three steps above, if anyone is ever interested to reuse my code. It'll be GPLed, I suppose ;)

link|flag
Hiii...it will be very greatful if u can provide me with a glimpse of yuor code...my email id is niks_tek3@yahoo.com – tek3 Nov 5 at 8:16
One thing more i want to ask...how to capture the URL of the success screen in order to obtain auth_token... – tek3 Nov 5 at 8:18
Using BrowserContent you can capture the URL with getURL() and parse the response accordingly. I will post the complete code shortly as I am tidying it up a bit. – Eki Nov 5 at 17:18
I have posted the codes here baskoro.web.id/facebook-connect-blackberry-HOWTO.… – Eki Nov 5 at 22:37
vote up 0 vote down

Wow, that's great - just wondering - out of interest, how did you manage to get over the problem that after the user has logged in, they end up on their home page (with your app sitting in the background)? Very interested in your code base when it's available...

link|flag

Your Answer

Get an OpenID
or

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