链接 android 集成中格式错误的哈希键

Malformed hashkey in Linked android integration

我在验证时遇到这个错误`

{
"errorCode": "INVALID_REQUEST",
"errorMessage": "either bundle id or package name \/ hash are invalid, unknown, malformed"
}

`

我的gradle(模块应用程序)文件在这里

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.1"
    defaultConfig {
        applicationId "com.fleksworks.nativeapplication"
        minSdkVersion 22
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
repositories {
        mavenCentral()
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })



    compile 'com.android.support:appcompat-v7:25.0.1'
    compile 'com.android.support:design:25.0.1'
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:support-v4:25.0.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
    compile 'de.hdodenhof:circleimageview:2.1.0'
    compile 'com.facebook.android:facebook-android-sdk:4.6.0'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile project(path: ':linkedin-sdk')
    compile 'com.wdullaer:materialdatetimepicker:3.0.0'

    compile 'com.google.android.gms:play-services-maps:10.0.1'
}

settings.gradle 文件在这里

include ':app', ':linkedin-sdk'

我使用了应用程序和 linux 终端的哈希键生成过程。 但他们给了我 different hashkeys,我使用 JAVA 代码得到的那个,如果我想添加那个 hashkey,那么它就不能添加,链接中说 hashkey 格式错误,另一方面 我从控制台获得的那个,可以添加,但是如果我添加这个,那么我在验证时会遇到上述错误。 请帮帮我。

最终,我设法解决了我的问题, 我所做的是使用两个键,之后我没有再遇到任何问题