如何获取 Rumble API 的访问令牌?

问题描述 投票:0回答:1

我有一把钥匙和一个秘密。

根据https://dev.rumbletalk.com/rest/authentication

我可以发出请求以获取访问令牌:

https://api.rumbletalk.com/token

将密钥和秘密作为参数传递:

但是,我越来越

{
"type": "Exception",
"status": false,
"message": "Missing credentials: key, secret"
}

知道为什么吗?

Rumble API 密钥和秘密具有来自集合变量的正确值。

postman rumble-api
1个回答
0
投票

网址

POST https://api.rumbletalk.com/token

使用

raw
代替
application/x-www-form-urlencoded

在身体里,

{
   "key":"your key",
   "secret":"your secret"
}

© www.soinside.com 2019 - 2024. All rights reserved.