-1
我正在開發一個應用程序,我想整合Facebook登錄,以方便用戶使用他/她的Facebook帳戶登錄和檢索用戶的詳細信息,如名稱,移動等。。我怎樣才能做到這一點?如何在Android中集成Facebook登錄?
我正在開發一個應用程序,我想整合Facebook登錄,以方便用戶使用他/她的Facebook帳戶登錄和檢索用戶的詳細信息,如名稱,移動等。。我怎樣才能做到這一點?如何在Android中集成Facebook登錄?
compile 'com.facebook.android:facebook-android-sdk:4.5.0'
清單中
<activity android:name="com.facebook.FacebookActivity"
android:configChanges=
"keyboard|keyboardHidden|screenLayout|screenSize|orientation"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:label="@string/app_name" />
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/fb_app_id"/>
中的strings.xml
文件
<string name="fb_app_id">1723658174519153</string>
fbConnectHelper.connect();
https://github.com/ErNaveen/SocialLoginIntegrationAndroid –
你到現在爲止做了什麼 –