我收到“400 Bad Request”和“你忘记了 body 变量吗?” 代码:
require "rest-client"
require "json"
# This is the ID that you copied down in the last exercise
your_folder_id = "816582409"
# Add the "body" variable here
body = { "description" => "I made this on Codecademy!"
}
response = RestClient.put(
"https://api.box.com/2.0/folders/#{816582409}",
JSON.generate(body),
:authorization => "Bearer" << "AKGEp7MoDfLAKnMyxTt3nSNtohXW3bt1"
)
JSON.parse(response.body)["description"]