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
It should be possible to provide an array of headers to filter, an array of query parameters to filter and body parameters to remove (last two could be combined to one payload array) - note that this can be individual for request and response:
Http::log([], // No context added
[
'filter_request_headers' => [
'user-agent',
],
'filter_request_payload' => [
'apitoken', // remove any "apitoken" provided in either request json or query
],
'filter_response_payload' => [
'data.*.base64_pdf',
],
]
)->get(...)
The text was updated successfully, but these errors were encountered:
It should be possible to provide an array of headers to filter, an array of query parameters to filter and body parameters to remove (last two could be combined to one payload array) - note that this can be individual for request and response:
The text was updated successfully, but these errors were encountered: