We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Before, I was able to read the response headers:
task.on('complete', (result: any) => { let headers = new HttpHeaders(); const iterator = result.response.getHeaders().entrySet().iterator(); while (iterator.hasNext()) { const header = iterator.next(); headers = headers.append(header.getKey, header.getValue()); } // ... });
However, that doesn't work anymore since #134, because the response object is no longer exposes (not on 'completed', not on 'responded')
'completed'
'responded'
The text was updated successfully, but these errors were encountered:
A fix has been released in the latest 3.2.7 version of the plugin.
Sorry, something went wrong.
zbranzov
tgpetrov
No branches or pull requests
Before, I was able to read the response headers:
However, that doesn't work anymore since #134, because the response object is no longer exposes (not on
'completed'
, not on'responded'
)The text was updated successfully, but these errors were encountered: