var tweets = [
`FAKE NEWS media knowingly doesn't tell the truth. A great danger to our country.
The failing @nytimes has become a joke. Likewise @CNN. Sad!`,
`I will not be attending the White House Correspondents' Association Dinner this year.
Please wish everyone well and have a great evening!`
];
$.ajax({
method: 'POST',
url: 'https://api.monkeylearn.com/v2/classifiers/cl_qkjxv9Ly/classify/?debug=1&sandbox=1',
headers: {
"Authorization": "token " + "4b9e42d5e009b503f750184e5ff84027cb7aa229",
},
contentType: 'application/json',
data: JSON.stringify({text_list: tweets}),
success: function(res){
console.log('res: ', res.result);
},
error: function(err) {
console.log(err);
}
});