【发布时间】:2021-12-06 23:43:53
【问题描述】:
https://auth.sandbox.ebay.com/oauth2/authorize?
client_id=${clientID}
&redirect_uri=https://localhost:3000/ebay/callback
&response_type=code
&scope=https%3A%2F%2Fapi.ebay.com%2Foauth%2Fscope%2Fsell%40user
我不断收到此错误:{"error_id":"invalid_request","error_description":"输入请求参数无效。","http_status_code":400}
我正在遵循本网站here的指示
谁能解释我为什么会收到这个错误?
【问题讨论】:
-
你知道发生了什么吗?与 php oauth2 客户端有同样的问题
-
invalid_request – 请求缺少参数,因此服务器无法继续处理请求。如果请求包含不受支持的参数或重复参数,这也可能会返回。这是unsuccessfull response你错过了
$client_secret = 'ebay_client_secret'希望它会工作
标签: node.js authentication oauth-2.0 ebay-api