coldfumonkeh / monkehTweets

A ColdFusion wrapper to interact with the Twitter API (with OAuth integration)
http://www.mattgifford.co.uk/
53 stars 30 forks source link

Lucee 5.3.3 Bad Request 400 #34

Open puc-covelli opened 5 years ago

puc-covelli commented 5 years ago

Just wanted to let you know, since upgrading to Lucee I the httpOAuthCall in base.cfc was failing with 400 Bad request. After a fair bit of messing around, to get this work I had to change the line at 251 from:

<cfhttp url="#arguments.url#" method="#arguments.method#" result="returnStruct" multipart="true" timeout="#arguments.timeout#">

to

<cfhttp url="#arguments.url#" method="#arguments.method#" result="returnStruct" timeout="#arguments.timeout#">

Now all ok and auths correctly again.

FYI.