We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c2c1b3 commit 595cd98Copy full SHA for 595cd98
git/gitauth.js
@@ -143,10 +143,10 @@ async function getGithubToken(gitCode) {
143
144
// post through CORS proxy to git with clientId, clientSecret and code
145
const resp = await axios.post('https://scepter-cors2.herokuapp.com/' +
146
- 'https://github.com/login/oauth/access_token?' +
147
- 'client_id=7ede3eed3185e59c042d' +
148
- '&client_secret=c1934d5aab1c957800ea8e84ce6a24dda6d68f45' +
149
- '&code=' + gitCode);
+ 'https://github.com/login/oauth/access_token?' +
+ 'client_id=7ede3eed3185e59c042d' +
+ '&client_secret=c1934d5aab1c957800ea8e84ce6a24dda6d68f45' +
+ '&code=' + gitCode);
150
151
// save git token to localStorage
152
gitToken = resp.access_token;
0 commit comments