我正在尝试使用Transferwise api。
获取https://api.sandbox.transferwise.tech/v1/rates我的内标识是efdc55d1-3e58-4223-8d8e-402fe189a88d
我一次又一次地收到这个错误消息:
{
"error": "invalid_token",
"error_description": "baf58c02-e7ca-45b2-950a-44d6a39f851e"
}我用失眠症和邮递员。如何从该链接获取信息?抱歉,我今天开始使用apis,也许我的问题不好。
发布于 2020-06-29 05:45:49
在Postman中,您可以添加请求标头:
Authorization: Bearer <Your token>https://learning.postman.com/docs/postman/sending-api-requests/requests/#configuring-request-headers
或者使用Request Builder中的Auth选项卡并选择Bearer Token帮助器,它将为您添加请求头。
https://learning.postman.com/docs/postman/sending-api-requests/authorization/#bearer-token
发布于 2021-10-01 20:30:32
我的解决方案是使用:
GET https://api.transferwise.com/v1/rates要使用GET https://api.sandbox.transferwise.tech/v1/rates,您必须在https://sandbox.transferwise.tech/register上注册
https://stackoverflow.com/questions/62626246
复制相似问题