Catch Twitter Exceptions

This commit is contained in:
Philipp Holzer 2021-05-29 21:11:53 +02:00
parent f014d84798
commit d032800f1e
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
1 changed files with 24 additions and 20 deletions

View File

@ -495,6 +495,7 @@ function twitter_action(App $a, $uid, $pid, $action)
Logger::debug('before action', ['action' => $action, 'pid' => $pid, 'data' => $post]);
try {
switch ($action) {
case 'delete':
// To-Do: $result = $connection->post('statuses/destroy', $post);
@ -516,6 +517,9 @@ function twitter_action(App $a, $uid, $pid, $action)
Logger::warning('Unhandled action', ['action' => $action]);
$result = [];
}
} catch (TwitterOAuthException $twitterOAuthException) {
Logger::warning('Unable to communicate with twitter', ['action' => $action, 'data' => $post, 'code' => $twitterOAuthException->getCode(), 'exception' => $twitterOAuthException]);
}
Logger::info('after action', ['action' => $action, 'result' => $result]);
}