From d44fc9292637ed6d1a4a7e04883e8b3b88dc3c15 Mon Sep 17 00:00:00 2001 From: theaamanda Date: Wed, 21 Sep 2016 23:34:53 +0200 Subject: finished error-handling with different error-messages for different errors. added info that the account has to be public in Twitter-Doc --- app/helpers/twitter_helper.rb | 6 +++++- doc/TWITTER_FEED.md | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/app/helpers/twitter_helper.rb b/app/helpers/twitter_helper.rb index 8503f24..719f95e 100644 --- a/app/helpers/twitter_helper.rb +++ b/app/helpers/twitter_helper.rb @@ -29,19 +29,23 @@ module TwitterHelper end rescue Twitter::Error::BadRequest error_handling + twitter_user_info[3] = "The request to have the tweets shown was invalid or cannot be otherwise served." rescue Twitter::Error::Unauthorized error_handling + twitter_user_info[3] = "Please change your twitter-credentials, make sure that the twitter-account you access is public or contact your provider-admin to have the tweets shown." rescue Twitter::Error::Forbidden error_handling + twitter_user_info[3] = "The request to have the tweets shown is understood, but it has been refused or access is not allowed." rescue Twitter::Error::NotAcceptable error_handling + twitter_user_info[3] = "An invalid format is specified in the request to have the tweets shown." rescue Twitter::Error::TooManyRequests error_handling + twitter_user_info[3] = "The rate-limit for accessing the tweets is reached. You should be able to see the tweets in a couple of minutes." end def error_handling twitter_user_info[2] = [] - twitter_user_info[3] = "The twitter-handle does not exist or the account is private. Please change it or contact your provider-admin." return twitter_user_info end diff --git a/doc/TWITTER_FEED.md b/doc/TWITTER_FEED.md index 592cd38..94de8c1 100644 --- a/doc/TWITTER_FEED.md +++ b/doc/TWITTER_FEED.md @@ -41,7 +41,7 @@ production: * Add also `--projectroot your_projectroot --twitterhandle your_twitterhandle` as well to not have manually put the data in your secrets-file * The full command looks like this: `script/generate_bearer_token --key your_consumerkey --secret your_consumersecret --projectroot your_projectroot --twitterhandle your_twitterhandle` * If you didn't give all your information to the script, had a typo or want to change anything else, please do so by finding the secrets-file at `/config/secrets.yml` - * Make sure that the correct twitterhandle and bearer-token is included + * Make sure that the correct twitterhandle and bearer-token is included. The twitter-account you want to have shown (the twitterhandle) is a public account! * Deactivate your bearer token * To deactivate your generated bearer token you can run script/invalidate_bearer_token -- cgit v1.2.3