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 would be helpful if, when you raised a PinterestException, you set an error code, so our handlers could sort out what sort of error it was in order to handle it appropriately.
Was there an error in the request? If Pinterest responded with an error, what error was it? (perhaps in Request.php, replacing lines 190-193 with this:
// Check the response code
if ( $response->getResponseCode() >= 400 ) {
throw new PinterestException( 'Pinterest error (code: ' . $response->getResponseCode() . ') with message: ' . $response->message, $response->getResponseCode() );
}
Thanks!
The text was updated successfully, but these errors were encountered:
It would be helpful if, when you raised a PinterestException, you set an error code, so our handlers could sort out what sort of error it was in order to handle it appropriately.
Was there an error in the request? If Pinterest responded with an error, what error was it? (perhaps in Request.php, replacing lines 190-193 with this:
// Check the response code
if ( $response->getResponseCode() >= 400 ) {
throw new PinterestException( 'Pinterest error (code: ' . $response->getResponseCode() . ') with message: ' . $response->message, $response->getResponseCode() );
}
Thanks!
The text was updated successfully, but these errors were encountered: