You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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.
The text was updated successfully, but these errors were encountered: