From 1a3ee155fc3c474901e9fb27ef7e3545300aa922 Mon Sep 17 00:00:00 2001 From: Stevie Graham Date: Wed, 27 Feb 2013 16:07:47 +0000 Subject: [PATCH] README fix: HTTParty.post uses body, not query params. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a4584f4..9407328 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ auth_hash = request.sign(token) query_params = params.merge(auth_hash) HTTParty.post('http://myservice/api/thing', { - :query => query_params + :body => query_params }) ```