gpt4 book ai didi

ruby - 使用带有基本身份验证的 Ruby Curb 发帖

转载 作者:数据小太阳 更新时间:2023-10-29 08:49:38 29 4
gpt4 key购买 nike

我正在尝试将以下 curl 命令行自动化到 Ruby Curb 中:

curl -H "Content-Type:application/json" -X POST -d \
'{"approvalType": "auto",
"displayName": "Free API Product",
"name": "weather_free",
"proxies": [ "weatherapi" ],
"environments": [ "test" ]}' \
-u myname:mypass https://api.jupiter.apigee.net/v1/o/{org_name}/apiproducts

在运行脚本之前填写 myname、mypass 和 {org name}。

我不知道如何通过使用 Ruby Curb 的基本身份验证来使用 JSON 负载进行 http 发布。我尝试了以下方法:

require 'json'
require 'curb'

payload = '{"approvalType": "auto",
"displayName": "Test API Product Through Ruby1",
"name": "test_ruby1",
"proxies": [ "weather" ],
"environments": [ "test" ]}'

uri = 'https://api.jupiter.apigee.net/v1/o/apigee-qe/apiproducts'
c = Curl::Easy.new(uri)
c.http_auth_types = :basic
c.username = 'myusername'
c.password = 'mypassword'
c.http_post(uri, payload) do |curl|
curl.headers["Content-Type"] = ["application/json"]
end

puts c.body_str
puts c.response_code

结果是一个空主体和一个 415 响应代码。我验证了 curl 命令可以正常工作。

任何帮助将不胜感激,因为它可以解决我现在正在处理的一整类问题。

最佳答案

我使用 Curb (0.8.5) 并发现,如果我在多个请求中重复使用 curl 实例(获取保存 cookie 的请求,然后发布数据)并且使用 http_post 方法,如

http_post(uri, payload) 

它实际上会发送 uri 和有效载荷组合成单个 json 请求(这当然会导致错误,如“意外字符('h'...”或“错误请求”)。

我设法让它工作,但我不得不使用带有有效负载的方法作为单个参数:

c =Curl::Easy.new
url = "http://someurl.com"
headers={}
headers['Content-Type']='application/json'
headers['X-Requested-With']='XMLHttpRequest'
headers['Accept']='application/json'
payload = "{\"key\":\"value\"}"

c.url = url
c.headers=headers
c.verbose=true
c.http_post(payload)

希望这对您有所帮助。

关于ruby - 使用带有基本身份验证的 Ruby Curb 发帖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16445384/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com