我在点击 Android 立即付款按钮时收到错误 405?
I get error 405 when I tap Android Pay buy with now button?
我正在尝试将 Android Pay API 与我的移动应用集成。
我有 Android 付款的生产权限。
在结帐页面中,点击使用 Android 付款按钮购买我收到错误代码 405。
下面是adb logcat:
: I/request/result code: requestCode: 66036, resultCode: 1
: I/GWalletErrorCode: 405
: I/AdjustCallback: Activity Resumed
: I/request/result code: requestCode: 1001, resultCode: 1
: I/GWalletErrorCode: 405
: I/AdjustCallback: Activity Resumed
感谢任何帮助。
根据WalletConstants,错误代码405是ERROR_CODE_MERCHANT_ACCOUNT_ERROR
。
作为 explained here,这意味着您正在尝试使用 Android 生产环境付款,但您的应用未使用正确的密钥签名:
When your app is pointed to the Android Pay production environment,
the Android Pay API returns ERROR_CODE_MERCHANT_ACCOUNT_ERROR (405)
if
the signing key fingerprint used to sign the Android app does not
match the release key fingerprint registered with Google Play. This
typically occurs after an app in development switches from the test
environment to the production environment
我正在尝试将 Android Pay API 与我的移动应用集成。
我有 Android 付款的生产权限。
在结帐页面中,点击使用 Android 付款按钮购买我收到错误代码 405。
下面是adb logcat:
: I/request/result code: requestCode: 66036, resultCode: 1
: I/GWalletErrorCode: 405
: I/AdjustCallback: Activity Resumed
: I/request/result code: requestCode: 1001, resultCode: 1
: I/GWalletErrorCode: 405
: I/AdjustCallback: Activity Resumed
感谢任何帮助。
根据WalletConstants,错误代码405是ERROR_CODE_MERCHANT_ACCOUNT_ERROR
。
作为 explained here,这意味着您正在尝试使用 Android 生产环境付款,但您的应用未使用正确的密钥签名:
When your app is pointed to the Android Pay production environment, the Android Pay API returns
ERROR_CODE_MERCHANT_ACCOUNT_ERROR (405)
if the signing key fingerprint used to sign the Android app does not match the release key fingerprint registered with Google Play. This typically occurs after an app in development switches from the test environment to the production environment