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'm trying to login to Facebook using a HTTP connection on mobile using these URLs:

String URL1= "https://www.facebook.com/dialog/oauth?client_id=128991357211271&redirect_uri=https://www.facebook.com/connect/login_success.html&scope=offline_access&display=touch&response_type=token";
String URL2="http://m.facebook.com/login.php?app_id=128991357211271&cancel=httpsu00253Au00252Fu00252Fwww.facebook.comu00252Fconnectu00252Flogin_success.htmlu00253Ferror_reasonu00253Duser_deniedu002526erroru00253Daccess_deniedu002526error_descriptionu00253DTheu00252Buseru00252Bdeniedu00252Byouru00252Brequest.&fbconnect=1&next=httpsu00253Au00252Fu00252Fwww.facebook.comu00252Fdialogu00252Fpermissions.requestu00253F_pathu00253Dpermissions.requestu002526app_idu00253D128991357211271u002526redirect_uriu00253Dhttpsu0025253Au0025252Fu0025252Fwww.facebook.comu0025252Fconnectu0025252Flogin_success.htmlu002526displayu00253Dwapu002526response_typeu00253Dtokenu002526permsu00253Doffline_accessu002526fbconnectu00253D1u002526from_loginu00253D1u002526client_idu00253D128991357211271&rcount=1&_rdr";
String URL3="https://m.facebook.com/login.php?m=m&next=http0X1.705B00P-767%2Fm.facebook.comttpsu00253Au00252Fu00252Fwww.facebook.comu00252Fdialogu00252Fpermissions.requestu00253F_pathu00253Dpermissions.requestu002526app_idu00253D128991357211271u002526redirect_uriu00253Dhttpsu0025253Au0025252Fu0025252Fwww.facebook.comu0025252Fconnectu0025252Flogin_success.htmlu002526displayu00253Dwapu002526response_typeu00253Dtokenu002526permsu00253Doffline_accessu002526fbconnectu00253D1u002526from_loginu00253D1u002526client_idu00253D128991357211271&refsrc=http0X1.BDEA81P-744%2Fm.facebook.com2476350215gin.php&refid=9";
String param3="email=myemail&pass=mypass";
String URL4="http://m.facebook.com/download.php?refsrc=http0X1.5C08C1P-688%2Fm.facebook.com1170gin.php&m_sess=R8Vnc-b9WcLHqr&_rdr&manual_redirect=1";

First, I try to access URL1, and then in the result there is a link to URL2 which I then access, and so on...

When I try to access URL3 and post my email and pass using HTTP post, URL4 is in the result. However, when I try to access URL4, the result is the same (there is a link to URL4 again).

When I try to open URL4 in a web browser, it says that I have to install Facebook for mobile.

Why does it always ask to install Facebook for mobile? Or is there a better way of how to login to Facebook using an HTTP connection only?

share|improve this question
1  
Why this may be theoretically possible, what you trying to do is strictly prohibited by TOS – Juicy Scripter Mar 29 '12 at 5:42

1 Answer

Refer to Using Facebook Connect on Mobile (J2ME) and Facebook API ME 1.0: Tutorial.

For code samples for BlackBerry and Android, see Facebook API ME. I hope you will get the idea on how to use Facebook API in Java ME.

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.