我在 Julia 工作,并尝试连接到 Schwab API。这是我的代码:
authUrl = "https://api.schwabapi.com/v1/oauth/authorize?client_id=$clientID&redirect_uri=https://127.0.0.1"
;
println(authUrl)
println("redirect url")
returnedLink = readline()
;
code = returnedLink[findfirst("code=", returnedLink).stop + 1:findfirst("%40", returnedLink).start - 1] * "@";
encode = base64encode("$clientID:$secret")
headers = Dict(
"Authorization" => "Basic $encode",
"Content-Type" => "application/x-www-form-urlencoded"
)
data = [
"grant_type" => "authorization_code",
"code" => code,
"redirect_uri" => "https://127.0.0.1"
]
;
response = HTTP.post("https://api.schwabapi.com/v1/oauth/token", headers=headers, form=data)
它给了我这个错误消息:
HTTP.Exceptions.StatusError(400, "POST", "/v1/oauth/token", HTTP.Messages.Response:
"""
HTTP/1.1 400 Bad Request
Content-Type: application/json
Content-Length: 98
Cache-Control: no-store
Pragma: no-cache
Expires: -1
Access-Control-Allow-Headers: *, X-Authorization
Access-Control-Max-Age: 3628800
Access-Control-Allow-Methods: GET, POST, OPTIONS
Date: Sun, 02 Jun 2024 13:28:57 GMT
Connection: close
Strict-Transport-Security: max-age=30
{"error":"invalid_grant","error_description":"Missing parameter grant_type"}
""")
即使我在上面指定了授权类型,为什么还是会收到无效授权错误?
您似乎正在尝试使用 Julia 连接到 Schwab API,但遇到了 OAuth 令牌交换问题。该错误消息表明缺少参数,特别是
grant_type
,即使您已在请求中指定了该参数。以下是该问题的详细说明以及解决该问题的一些步骤:
问题解释
这表明
grant_type
您的 POST 请求中的参数未被识别。发生这种情况的原因有多种,例如请求数据或标头的格式不正确。潜在问题和解决方案
data
参数格式:确保data
参数格式正确为 URL 编码形式。在 Julia 中,使用成对数组可能无法正确转换为预期的表单数据格式。标头:确保标头设置正确并且
Content-Type
确实如此application/x-www-form-urlencoded
。更正代码
这是代码的更正版本,并附有详细说明:
主要变化
使用
Dict
fordata
:data
从对数组更改为 aDict
以确保正确处理。对表单数据进行 URL 编码:用于
HTTP.URIs.querystring(data)
对表单数据进行正确编码。body
在 中设置HTTP.post
参数: 用于body=encoded_data
而不是form=data
确保数据以 URL 编码形式发送。通过进行这些调整,您的 OAuth 令牌请求的格式应该正确,并且您应该不会再遇到“invalid_grant”错误。如果您仍然遇到问题,接下来的步骤是验证 Schwab API 的确切要求并确保所有参数都得到正确处理。