我正在尝试使用 Coinbase API进行oauth ,但一直收到无效的请求响应“”该请求缺少必需的参数,包含了不受支持的参数值或格式错误。”
按照他们的指南https://developers.coinbase.com/docs/wallet/coinbase-connect/integrating,我可以:
获取https://example.com/oauth/callback?code=4c666b5c0c0d9d3140f2e0776cbe245f3143011d82b7a2c2a590cc7e20b79ae8&state=134ef5504a94 app:// oauth-coins?code = 4c666b5c0c0d9d3140f2e0776cbe245f3143011d82b7a2c2a590cc7e20b79ae8
未成功交换访问令牌的代码 POST https://api.coinbase.com/oauth/token
let url = URL(string: "https://api.coinbase.com/oauth/token")! //
var request = URLRequest(url: url)
request.setValue("authorization_code", forHTTPHeaderField: "grant_type")
request.setValue("\(self.code)", forHTTPHeaderField: "code")
request.setValue("clientid1234", forHTTPHeaderField: "client_id")
request.setValue("clientsecret1234", forHTTPHeaderField: "client_secret")
request.setValue("app://oauth-coins", forHTTPHeaderField: "redirect_uri")
因为我在json
中返回错误:
{
error = "invalid_request";
"error_description" = "The request is missing a required parameter, includes an unsupported parameter value, or is otherwise malformed.";
}
更新(已解决):
我不需要setValue
的所有参数,而是将其发布为request.httpBody
答案 0 :(得分:0)
我不需要setValue
的所有参数,而是将其发布为request.httpBody