// with jQuery
$.post(
'https://graph.facebook.com',
{
id: '',
scrape: true
},
function(response){
console.log(response);
}
);

// with "vanilla" javascript
var fbxhr = new XMLHttpRequest();
fbxhr.open("POST", "https://graph.facebook.com", true);
fbxhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
fbxhr.send("id=&scrape=true");


Debug olayı ile ilgili şöyle bir kod buldum ama yapamadım