作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
还有其他人对 Plaid 的 linkTokenCreate 方法有疑问吗?我使用 node.js 作为后端,当我将它与前端一起运行时,错误从涉及此函数的行开始。
即使我使用标准的快速启动选项,我仍然会收到相同的 400 错误请求错误。
这是后端代码,与快速入门相同。我只是在测试链接 token ,所以它是我定义的唯一路径。
app.post('/create_link_token', function (request, response, next) {
console.log('HI THERE')
Promise.resolve()
.then(async function () {
const configs = {
user: {
//this should be a unique id for the current user.
client_user_id: 'user-id',
},
client_name: 'Plaid Quickstart',
products: PLAID_PRODUCTS,
country_codes: PLAID_COUNTRY_CODES,
language: 'en',
};
console.log(configs);
// if (PLAID_REDIRECT_URI !== '') {
// configs.redirect_uri = PLAID_REDIRECT_URI;
// };
const createTokenResponse = await client.linkTokenCreate(configs);
console.log(createTokenResponse);
prettyPrintResponse(createTokenResponse);
response.json(createTokenResponse.data);
})
.catch(next);
});
这是错误:
Error: Request failed with status code 400
at createError (C:\Users\MyComputer\Desktop\mukadi\plaid-integration\backend\node_modules\axios\lib\core\createError.js:16:15)
at settle (C:\Users\MyComputer\Desktop\mukadi\plaid-integration\backend\node_modules\axios\lib\core\settle.js:17:12)
at IncomingMessage.handleStreamEnd (C:\Users\MyComputer\Desktop\mukadi\plaid-integration\backend\node_modules\axios\lib\adapters\http.js:269:11)
at IncomingMessage.emit (node:events:402:35)
at endReadableNT (node:internal/streams/readable:1343:12)
at processTicksAndRejections (node:internal/process/task_queues:83:21)
最佳答案
可能很傻——但当我得到这个确切的错误时,那是因为我们没有在我们的格子仪表板中注册我们的 URI。
注册您的重定向 URI:
登录到 Plaid 仪表板并转到“团队设置”->“API”页面。在允许的重定向 URI 旁边,单击配置,然后单击添加新 URI。输入您的重定向 URI,您还必须将其设置为应用程序的通用链接,例如:https://app.example.com/plaid/ .单击保存更改。
关于javascript - Plaid 的 LinkTokenCreate 在 node.js 中给出 400 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73126752/
还有其他人对 Plaid 的 linkTokenCreate 方法有疑问吗?我使用 node.js 作为后端,当我将它与前端一起运行时,错误从涉及此函数的行开始。 即使我使用标准的快速启动选项,我仍然
我是一名优秀的程序员,十分优秀!