Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upFix POST payload format and location #92
Closed
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The client
resource()
method puts POST payloads in the query. Also, some providers (I'm looking at your stupid face Twitter) require the form-encoded payload to be OAuth compliant which means strings with'!'
will not get encoded using normal encoding and break. This fixes it in a way that will work under all versions of node.If you didn't use the
Bell.oauth.Client
API, you are not affected by this change. If you did, you need to replace calls toclient.request()
with the newclient.resource()
.