Use old API endpoint to fetch tokens
This commit is contained in:
parent
bde3c3662d
commit
4c1270b377
1 changed files with 17 additions and 17 deletions
|
@ -1,5 +1,5 @@
|
||||||
import asyncdispatch, httpclient, times, sequtils, strutils
|
import asyncdispatch, httpclient, times, sequtils, strutils, json
|
||||||
import types
|
import types, agents, consts
|
||||||
|
|
||||||
var tokenPool {.threadvar.}: seq[Token]
|
var tokenPool {.threadvar.}: seq[Token]
|
||||||
|
|
||||||
|
@ -9,27 +9,27 @@ proc fetchToken(): Future[Token] {.async.} =
|
||||||
"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
|
"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
|
||||||
"accept-language": "en-US,en;q=0.5",
|
"accept-language": "en-US,en;q=0.5",
|
||||||
"connection": "keep-alive",
|
"connection": "keep-alive",
|
||||||
"user-agent": "Mozilla/5.0 (X11; Linux x86_64; rv:75.0) Gecko/20100101 Firefox/75.0"
|
"user-agent": getAgent(),
|
||||||
|
"authorization": auth
|
||||||
})
|
})
|
||||||
client = newAsyncHttpClient(headers=headers)
|
client = newAsyncHttpClient(headers=headers)
|
||||||
|
|
||||||
var resp: string
|
var
|
||||||
|
resp: string
|
||||||
|
tok: string
|
||||||
|
|
||||||
try:
|
try:
|
||||||
resp = await client.getContent("https://twitter.com")
|
resp = await client.postContent(activate)
|
||||||
|
tok = parseJson(resp)["guest_token"].getStr
|
||||||
|
|
||||||
|
let time = getTime()
|
||||||
|
result = Token(tok: tok, remaining: 187, reset: time + 15.minutes,
|
||||||
|
init: time, lastUse: time)
|
||||||
|
except Exception as e:
|
||||||
|
echo "fetching token failed: ", e.msg
|
||||||
|
return Token()
|
||||||
|
finally:
|
||||||
client.close()
|
client.close()
|
||||||
except:
|
|
||||||
echo "fetching token failed"
|
|
||||||
return Token()
|
|
||||||
|
|
||||||
let pos = resp.rfind("gt=")
|
|
||||||
if pos == -1:
|
|
||||||
echo "token parse fail"
|
|
||||||
return Token()
|
|
||||||
|
|
||||||
let time = getTime()
|
|
||||||
result = Token(tok: resp[pos+3 .. pos+21], remaining: 187,
|
|
||||||
reset: time + 15.minutes, init: time, lastUse: time)
|
|
||||||
|
|
||||||
proc expired(token: Token): bool {.inline.} =
|
proc expired(token: Token): bool {.inline.} =
|
||||||
const
|
const
|
||||||
|
|
Loading…
Reference in a new issue