Jak wywołać metodę HTTP POST przez SSL w ruby?

Oto prośba o użycie curl:

curl -XPOST -H content-type:application/json -d "{\"credentials\":{\"username\":\"username\",\"key\":\"key\"}}" https://auth.api.rackspacecloud.com/v1.1/auth

Próbowałem zrobić to samo za pomocą ruby, ale nie mogę go uruchomić.

Wypróbowałem też kilka bibliotek, ale nie mogę go uruchomić. Oto, co mam do tej pory:

uri = URI.parse("https://auth.api.rackspacecloud.com")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Post.new("/v1.1/auth")
request.set_form_data({'credentials' => {'username' => 'username', 'key' => 'key'}})
response = http.request(request)

Dostaję 415 nieobsługiwany błąd typu nośnika.

questionAnswers(4)

yourAnswerToTheQuestion