尝试使用 Plaid API 将公共令牌交换为访问令牌时收到此错误:
{ display_message: null,
error_code: ‘INVALID_PUBLIC_TOKEN‘,
error_message: ‘provided public token is in an invalid format. expected format: public-<environment>-<identifier>’,
error_type: ‘INVALID_INPUT‘,
request_id: ‘vVGLl’,
status_code: 400 }
在 onSuccess 回调中接收到的令牌格式以及我传递给 exchangePublicToken 的格式如下:
beb195c7ab7f2f3ed343f822250cc574d42f536e14be2b11a68a31b7dbc6944c34df45ce7226f1dbc1a6ea152a5448323229dfae333a50c1137cf5ac3d909f18
该错误表明公共令牌的预期格式是public-<environment>-<identifier>
. 谁能澄清identifier
指的是什么?
如何正确格式化公共令牌以将其交换为访问令牌?