curl -X "POST" "https://my.tapkey.com/api/v1/owners/xxx/grants/xxxx/revoke" \
-H 'Authorization: Bearer xxxx'我得到了
{"Message":"The requested resource does not support http method 'POST'."}我创建了一个赠款,我想删除它,因为我正在测试。我以为撤销可以是类似的东西。我想我搞错了赠款的概念。
发布于 2021-10-21 18:36:32
正如文档中为此端点指定的那样,您需要指定dryRun查询参数。
https://my.tapkey.com/api/v1/owners/xxx/grants/xxxx/revoke?dryRun=falsehttps://stackoverflow.com/questions/69666176
复制相似问题