hyper
hyper copied to clipboard
A CFML HTTP Builder
Sometimes it's necessary to get information about the current request within the response callback - especially when detecting anomalies in the response. Pass the request, itself as the second argument...
I recently tried upgrading hyper and it started failing in an odd way. This code works perfectly in 3.6.2. As you can see, the fullURL is dumped right before sending:...
HTTP GET requests allow for multiple parameters to be passed that share the same name. For example, the following GET call to the Twilio lookups API allows for the 'Type'...
Since CFML doesn't support persistent HTTP connections, look into adding BoltHTTP as an official adapter that can configure persistent clients. https://www.forgebox.io/view/bolthttp
- The member function `.clone` on a Struct is undocumented and is not available in Lucee 6. `.duplicate` is available on all engines - Adds Lucee 6 to matrix
In Lucee 6 the `clone` method is no longer available on a Struct. `models/HyperRequest.cfc:1286 `: ``` req.setHeaders( variables.headers.clone() ); ``` Throws the following error: ``` GLOBAL BUNDLE EXCEPTION -> expression:The...
Calls to `interceptorService.processState()` throw exception in Coldbox 8. Change to `announce()`