2016-09-21 147 views
0

我知道這個問題已經被問過這樣首先讓我列舉的一切,我嘗試沒有任何成功的事情:密鑰散列:Facebook的SDK

  1. I made my app live in facebook settings
  2. 我出版我的應用程序的發佈模式。
  3. I registered the hash that did not match in the app settings settings
  4. I also registeredhash provided by this code,發佈在釋放模式的應用程序和結果散列的是,我在應用設置中已經註冊了相同的散列。
  5. 我執行命令keytool -exportcert -alias '***' -keystore '****' | '*****' sha1 -binary | '*****' base64並將其粘貼到應用程序設置中的散列鍵中。

應用程序登錄的唯一方法是如果Facebook應用程序登錄的管理員。但是,如果別人使用該應用程序並登錄,則會發生錯誤。

唯一一個我沒有;試過的是deleting the fb app and start over,但我想知道我最先失蹤的是什麼。

我是不是瘋了?是。我有足夠的嘗試嗎?看看該PIC波紋管(我想你就會知道,色彩的手段)

enter image description here

應用程序和SDK的信息:

android { 
    signingConfigs { 
     config { 
      keyAlias '****' 
      keyPassword '****' 
      storeFile file('****') 
      storePassword '****' 
     } 
    } 
    compileSdkVersion 23 
    buildToolsVersion "23.0.3" 
    defaultConfig { 
     applicationId "****" 
     minSdkVersion 16 
     targetSdkVersion 21 
     versionCode 1 
     multiDexEnabled true 
     versionName "***" 
    } 
    dexOptions { 
     incremental true 
     preDexLibraries = false 
     jumboMode = false 
     maxProcessCount 4 
     javaMaxHeapSize "6g" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    testCompile 'junit:junit:4.12' 
    testCompile 'org.mockito:mockito-core:2.0.5-beta' 
    compile 'com.android.support:appcompat-v7:23.4.0' 
    compile '****' 
    compile 'com.squareup.retrofit2:converter-gson:2.0.2' 
    compile 'com.facebook.android:facebook-android-sdk:4.8.0' -- facebook sdk 
    compile 'com.google.android.gms:play-services:9.2.1' 
    compile 'com.squareup.picasso:picasso:2.5.2' 
    compile 'com.android.support:design:23.4.0' 
    compile '****' 
} 

回答

0

小時後嘗試,終於,我的所有的滿意度找到了解決方案,並感謝上帝(我應該得到這一刻,我幾乎從字面上把我的頭撞在牆上,哈哈),找到了解決辦法。

如果您指定user_birthday作爲Facebook sdk的權限列表。確保您還提交了在應用程序審閱選項卡中使用它的權限。您不允許默認使用它。 Facebook需要一些更多的信息,比如你如何使用該權限,以及在哪裏等等。