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 am making an application in android which integrates twitter and facebook logins and save the logged user info. It is working fine in device with GPRS. But when I am trying to run the application with wifi it gives exception as below.

For Twitter: "Server error"

For Facebook: "DialogError"

please give me some hint to solve this problem.

share|improve this question
1  
"please give me some hint to solve this problem." - Please show some code. Show what you're trying to do and the error messages from LogCat. – Squonk Dec 17 '11 at 8:08
Can you access Facebook through the stock android browser over wifi? Next question, can you access the https (the http-secure of facebook) through the stock android browser over wifi? – Stephan Branczyk Dec 17 '11 at 9:32
improve your acceptance rate... you will get more quick answers – Vino Jul 14 '12 at 17:58

1 Answer

up vote 2 down vote accepted

use permission

<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

I think u off ur WIFI in phone.

share|improve this answer
Sir still it is not working and I also added <uses-feature android:name="android.hardware.wifi"/> But the problem is same – stiffler Dec 17 '11 at 8:51
@stiffler, What does logcat say? – Stephan Branczyk Dec 17 '11 at 9:39

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.