gpt4 book ai didi

android - 在 Android 中使用 android plaid sdk 未收到成功回调

转载 作者:行者123 更新时间:2023-11-29 00:51:25 25 4
gpt4 key购买 nike

我在我的 android 应用程序中实现了 plaid sdk 版本 - 0.3.0

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

点击“继续”后,我收到带有 resultCode=0 的 onActivityResult() 回调,但与任何 Plaid Result 代码无关。

我只创建了一个 Activity 作为 MainActivity,并将其用作 Redirected 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

提前致谢,请帮忙。

最佳答案

通过更新plaid sdk版本到0.3.1解决

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

在 Plaid 文档网站上,他们仍然保留旧版本,请更新版本到 0.3.1。

新版本接收所有回调

关于android - 在 Android 中使用 android plaid sdk 未收到成功回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59304668/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com