You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
571 B

function getCookie(name) {
var value = "; " + document.cookie;
var parts = value.split("; " + name + "=");
if (parts.length == 2) return parts.pop().split(";").shift();
}
fetch('http://api.kfcoding.com/api/practice/trains/competition/begin', {
headers: {
'Content-Type': 'application/json',
Authorization: getCookie('token')
},
method: 'POST',
body: JSON.stringify({repo: 'https://github.com/openx-lab/go-study-guide.git'})
}).then(resp => resp.json())
.then(data => {
if (data.data)
localStorage.setItem('comp_id', data.data.id)
});