1

如何在 Ruby 中将其转换为 RESTCLIENT。

在这里,我在使用 POSTMAN(Chrome 的 Rest 客户端应用程序)时传递了以下详细信息:

URL as : http://localhost:8080/myapplication/api/sites/
Headers as : Content-Type application/json
Data as : {"siteName":"test_site7"}

结果成功:

{
"success": {
    "body": {
        "id": 17500,
        "siteName": "test8"
    }
}
}

我应该如何在 RESTCLIENT 中执行此操作:

我做了一些这样的事情,但它不起作用:

response=JSON.parse(RestClient.put("#{HOST}/sites", {siteName:"#{site_name}"}, :content_type => :json, :accept => :json))
4

0 回答 0