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
{{ message }}
This repository was archived by the owner on Aug 29, 2019. It is now read-only.
From the prints I know I got the target list and subscriber. But the last line in the function throws an error with no information. I went to oath_application.php and modified code in line 483:
if($resp->headers['Status-Code'] >= 400) {
$data = json_decode($resp->body, true);
$message = var_export($data, true);
throw new Exception($message);
//throw new AWeberAPIException($data['error'], $url);
}
With that I found that it's returning a 500 Internal Server Error.