我在版本为0.3.0的android应用中实现了格子sdk

单击上一个屏幕的“继续”按钮后,我没有收到成功或任何回调。

单击“继续”后,我使用onActivityResult()进行了回调,结果代码为0,但与任何格子结果代码无关。

我仅创建了一个Activity作为MainActivity,并将其用作重定向的Activity。

===== AndroidManifest.xml =====

    <activity android:name=".MainActivity" android:launchMode="singleInstance">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />

                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>

                <intent-filter android:autoVerify="true">
                    <action android:name="android.intent.action.VIEW" />
                    <category android:name="android.intent.category.DEFAULT" />
                    <category android:name="android.intent.category.BROWSABLE" />
                    <data
                        android:host="plaid-redirect"
                        android:scheme="plaidtestapp" />
                </intent-filter>
            </activity>
<activity android:name="com.plaid.link.LinkActivity" />

===== MainActivity.kt =====
val intent = Intent(this, LinkActivity::class.java)
intent.putExtra( Plaid.LINK_CONFIGURATION,
LinkConfiguration(
// required
clientName = "Plaid Test App",
products = listOf(PlaidProduct.TRANSACTIONS),
webviewRedirectUri = "plaidtestapp://plaid-redirect",
// optional
environment = PlaidEnvironment.SANDBOX, // Defaults to plaid options value if set or SANDBOX
language = Locale.ENGLISH.language, // Defaults to English
countryCodes = listOf(Locale.US.country), // Defaults to US
webhook = "https://requestb.in",
userEmailAddress = "{registered email id}",
userLegalName = "{registered email id}",
userPhoneNumber = "{phone number}") )
startActivityForResult(intent, LINK_REQUEST_CODE)

参考Github链接
https://github.com/plaid/plaid-link-android

在此先感谢,请提供帮助。

最佳答案

通过将格子sdk版本更新为0.3.1来解决

dependencies {
  implementation 'com.plaid.link:sdk-core:0.3.1'
}

在格子文档站点上,他们仍然保留旧版本,请将版本更新为0.3.1。

在新版本中,它将接收所有回调

10-08 17:56