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 facing a problem in facebook integration in android application. The problem is that when I try to go to this activity and try to login to the facebook the following error appears on the logcat. I am using the facebook android sdk.

10-19 14:58:58.273: DEBUG/Facebook-authorize(288): Login failed: com.facebook.android.DialogError: A secure connection could not be established.

Will you please anyone help me out in solving this problem?

share|improve this question

3 Answers

Did you set uses permission in Android Manifest?

<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
share|improve this answer

i really don't understand why you getting this error like : A secure connection could not be established.

you can try one thing in Facebook.java in constructor you can try removing the "s" from the url https://..

share|improve this answer

This is the problem due to phone's network signal. I too was getting the same problem. Log in using Facebook works perfectly when you get proper network signal on your mobile.

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.