-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using only consumer_key and consumer_secret breaks POST requests #28
Comments
Okay, here's an adapted example. Code:
Output:
Notice in particular the query string for the url in the POST example—data and params are both empty, but we have data added to the query string! |
Thanks for your time :-) Aside form this one bug it's a great project; I'd hunt this down myself but I'm pretty busy otherwise. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I can't really write an example, but if you only specify the
consumer_key
andconsumer_secret
in the hook, POST requests don't senddata
, they send it as part of the query string (even though the data isn't present inrequest.params
either).I've tried similar code with
restkit
and it worked fine with that.The text was updated successfully, but these errors were encountered: