Added curl for fetching badges and header for github authorization #3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Also i added posibility to log all curl requests to a log file so that will be easier to debug next time something happens..
For github authorization to work, you must go into your profile here: https://github.com/settings/tokens and create a token, then go to Heroku.com, to your application in Settings tab under Config variables , add new config variable with name GITHUB_API_KEY and put the token generated previously to the value attribute
Then you can deploy this and everything wil work
The reason why this is needed is because you're doing unauthenticated requests, which now has a limit of 60 requests allowed per hour, but this is used in 75 repositories at the moment.
Doing authenticated requests, will allow you to do 5000 requests per hour, and this will solve this problem with badges.
Please let me know what you think . Thank you very much.