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
Would be nice to have a option to either set on the client, or pass as an option when making a request to follow any redirection (3xx codes).
It's currently possible by nesting callbacks, something like: if(res->status_code() == 301) client.get(res->header().value("Location"), /*...*/);
The text was updated successfully, but these errors were encountered:
Would be nice to have a option to either set on the client, or pass as an option when making a request to follow any redirection (3xx codes).
It's currently possible by nesting callbacks, something like:
if(res->status_code() == 301) client.get(res->header().value("Location"), /*...*/);
The text was updated successfully, but these errors were encountered: