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
The default URL for string validation is currently under a 302 rule.
According to LWP this is not a is_success.
it might be wise to change 223 to
if(index($response->{_content},"Status: 30") > -1 || $response->is_success)
as this will take into account redirects.
I am hesitant to hard code the 302 URL as this will likely be removed at some point.
Opinion?