0
如何使用RestClient在帖子中發送用戶名和密碼?我的客戶端代碼如下:如何使用RestClient發送用戶名和密碼
response = RestClient.post 'http://localhost:3000/api/rules',
:name => "me", :password => "12345",
:books => {:book_name => "Harry Porter",
:author => "JR"}
服務器代碼是在Rails和利用`http_basic_authenticate_with的:名稱=> 「我」,:密碼=> 「12345」。