This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "domain":"example.ap", | |
| "status":"Activa", | |
| "register":"ApolenNic", | |
| "registry":"ApolenNic (http://nic.ap/)", | |
| "address":"2-6 MeinStlet Dublik Apolen", | |
| "email":"webmaster@nic.ap" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var parser = new URL(location.href); | |
| async function setClientInfo() { | |
| parser = new URL(location.href); | |
| if (!isNaN(parser.pathname.split('/')[3])) { | |
| const _sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms)); | |
| fetch('https://api.twitter.com/2/tweets?ids=' + parser.pathname.split('/')[3] + '&tweet.fields=attachments,author_id,context_annotations,created_at,entities,geo,id,in_reply_to_user_id,lang,possibly_sensitive,public_metrics,referenced_tweets,source,text,withheld&expansions=referenced_tweets.id', { | |
| headers: { | |
| 'Authorization': 'Bearer $TwitterAPIBearerToken' | |
| } | |
| }).then(function (data) { |
NewerOlder