ttstamp in facebook post data - any bot makers can help me?

Gooze

Newbie
Joined
Oct 19, 2009
Messages
39
Reaction score
8
so I'm writing a bot that uses facebook, and there is a field that is sent in the postdata that is called the ttstamp, and it is a long number. This is giving me the impression of being a time stamp? the closest thing I could find was this:

http://www.blackhatworld.com/blackhat-seo/facebook/411272-cracked-facebooks-phstamp.html


is this like the same thing?
 
What requests send this value? give some examples of the value as well, maybe its just a unix timestamp
 
What requests send this value? give some examples of the value as well, maybe its just a unix timestamp

Thanks for replying, I noticed it was a javascript function that generated the value. this was the code in case anyone was interested:

r.fb_dtsg=h.getToken();
var u='';
for (var v=0; v < r.fb_dtsg.length; v++) {
u+=r.fb_dtsg.charCodeAt(v);
r.ttstamp='2'+u;
}
 
thanks a lot!! im making a fb bot and i need this and other params your post is very useful! :D
 
Back
Top