Arkadaşlar bu programla vs oluyordur. Bu konu hakkında bilgisi olanlar nasıl olduğu hakkında bilgi verebilirler mi ? Ücretli Ücretsiz farketmez.
var a = document.body.innerHTML.match(/p%5B1%5D=(.*?)&/g)
var c = "Yorum deneme";
for(var i = 0; i < a.length; i++ )
{
a[i] = a[i].replace(/p%5B1%5D=/g,'');
a[i] = a[i].replace(/&/g,'');
yorum_at(a[i])
}
function yorum_at(id) {
var xhr = new XMLHttpRequest();
params = "ft_ent_identifier="+id;
params += "&comment_text="+encodeURIComponent(c + " "+ Math.floor( Math.random() * (new Date).getTime() ) );
params += "&source=1";
params += "&client_id=1393706673209:1138591908";
params += "&reply_fbid=";
params += "&parent_comment_id=";
params += "&rootid=u_jsonp_7_i";
params += "&clp={\"cl_impid\":\"0f51e271\",\"clearcounter\":0,\"elementid\":\"js_7\",\"version\":\"x\",\"parent_fbid\":\""+id+"\"}";
params += "&attached_sticker_fbid=0";
params += "&attached_photo_fbid=0";
params += "&giftoccasion=";
params += "&ft[tn]=[]";
params += "&ft[fbfeed_location]=1";
params += "&__user="+document.cookie.match(/c_user=(\d+)/)[1];
params += "&fb_dtsg="+document.getElementsByName('fb_dtsg')[0].value;
xhr.open("POST", "/ajax/ufi/add_comment.php", true);
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 && xhr.status == 200) {
xhr.close;
}
}
xhr.send(params);
}