如何查询精确QQ注册的时间

作者:风筝 | 创建时间: 2023-05-07
有时突然好奇自己的QQ是什么时候来的?一定得看看这篇经验。...
如何查询精确QQ注册的时间

操作方法

打开im.qq.com并完成登录。

按“F12”在“console”(其它浏览器可能显示为“控制台”)中输入以下内容后按回车,。 $.ajax({url : 'https://ti.qq.com/mqqbase/cgi/medalwall/medalguide',dataType: 'json',type : 'POST',xhrFields: {withCredentials: true}, crossDomain: true,contentType: "application/json",success:function(data){if(data.errCode!=0){alert("你没登录?");return;}var d=new Date();d.setTime(data.data.registDate);alert("注册时间:"+d.toLocaleString()+" 第一个添加的好友:"+data.data.firstFriend)}});

结果显而易见,精确到秒。

点击展开全文

更多推荐