vote up 0 vote down star

i m developing a blackberry app which requires facebook login. can i login to facebook via my app without stopping the app in the middle. means can i login to facebook in parallel with my application, without interrupting it.

flag

2 Answers

vote up 0 vote down

You would need to make your program multithreaded, and handle the connection to facebook in another thread.

link|flag
vote up 0 vote down

It all depends whether the User of your application has already grants your application the access to his/her profile. If it is true, you would then have the session key (valid and non-expiring) for the User and no login is required. Furthermore, some methods do not require session at all (cf. Facebook API documentation).

link|flag
what if the user has not granted the request..?? how to proceed further in that case.. – tek3 Nov 11 at 13:44
Unfortunately there is not much your app can do as Desktop application (Facebook Connect) requires session key. (wiki.developers.facebook.com/index.php/…) – Eki Nov 13 at 7:00

Your Answer

Get an OpenID
or

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