您好我正在尝试使用其余的客户端gem向api发送帖子请求。该网站发布了一个示例请求,如下所示:
curl -H "Content-Type: application/json" -d '{"email": "email@example.com", "password": "password"}' -X POST "http://example.com/users"
我在用户控制器中的帖子路线是:
class UsersController < ApplicationController
require 'rest_client'
def index
post = RestClient.post 'http://example.com/users', { 'email' => 'test@test.com', 'password'=>'testing1234' }
end
end
我得到的只是400 Bad Request error
。我只想提出回复请求。任何有关语法的帮助都将非常感谢!