What’s the point of a timestamp in OAuth if a Nonce can only be used one time?

The timestamp is used for allowing the server to optimize their storage of nonces. Basically, consider the read nonce to be the combination of the timestamp and random string. But by having a separate timestamp component, the server can implement a time-based restriction using a short window (say, 15 minutes) and limit the amount of … Read more

Is there anyway to programmatically fetch a zipball of private github repo?

New Alternative Because the given accepted answer does not work anymore, I thought I would explain how I was able to do it with the new changes in the github API. The new Download Api Link First, I found information about downloading the archive here: https://developer.github.com/v3/repos/contents/#get-archive-link Public Repo If it’s a public repo then it … Read more