Open puc-covelli opened 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.
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.