function doit(){
var news_art = $('#news_articles').val().split('\n');
console.log(news_art);
for (var i = 0; i < news_art.length; i++){
var web_url = 'https://api.buzzbreak.news/voyager/points/claim-reward';
var web_data = {"should_return_reward_interval": true, "time_zone_offset": "+08:00",
"news_url": news_art[i], "purpose": "read_news"};
console.log(news_art[i]);
$.ajax({
url: web_url,
headers: {
"voyager-api-key": "p5DqGsYcOFucDadCvfWyjgrbk3Bs1RE1",
"buzzbreak-api-key": "p5DqGsYcOFucDadCvfWyjgrbk3Bs1RE1",
"buzzbreak-client": "android",
"buzzbreak-device-id": "571a9689-a31d-469e-ae09-355e24492265",
"buzzbreak-locale": "en_GB",
"buzzbreak-app-version": "119",
"buzzbreak-client-os-version": "23",
"buzzbreak-account-id": "13311806",
"content-type": "application/json; charset=utf-8",
"user-agent": "okhttp/3.12.0"},
data: JSON.stringify(web_data),
dataType: 'json',
type: "POST",
complete: function(xhr){
if(xhr.status){
console.log("Response Status Code: " + xhr.status);
}
},
sucess: function(r){console.log('Success! ' + r);}
})
}
}