Closed alexzurbonsen closed 7 months ago
At some point I ran into errors with certain requests, that were probably preflight requests Back then it was on www.tagesschau.de.
Error message: ProtocolError: Could not load body for this request. This might happen if the request is a preflight request.
ProtocolError: Could not load body for this request. This might happen if the request is a preflight request.
Handled them by adding an if statement with these conditions in the responseHandler
responseHandler
response.status() !== 204 && response.status() !== 304 && response.request().method() !== 'OPTIONS'
Understand if there is a better solution.
At some point I ran into errors with certain requests, that were probably preflight requests Back then it was on www.tagesschau.de.
Error message:
ProtocolError: Could not load body for this request. This might happen if the request is a preflight request.
Handled them by adding an if statement with these conditions in the
responseHandler
Understand if there is a better solution.