mirror of
https://github.com/zedeus/nitter
synced 2026-09-05 14:49:32 +00:00
Use graphTweet for cookie sessions for now
This commit is contained in:
parent
064ec88080
commit
4b9aec6fde
1 changed files with 2 additions and 1 deletions
|
|
@ -42,7 +42,8 @@ proc userTweetsAndRepliesUrl(id: string; cursor: string): ApiReq =
|
|||
proc tweetDetailUrl(id: string; cursor: string): ApiReq =
|
||||
let cookieVars = tweetDetailVars % [id, cursor]
|
||||
result = ApiReq(
|
||||
cookie: apiUrl(graphTweetDetail, cookieVars, tweetDetailFieldToggles),
|
||||
# cookie: apiUrl(graphTweetDetail, cookieVars, tweetDetailFieldToggles),
|
||||
cookie: apiUrl(graphTweet, tweetVars % [id, cursor]),
|
||||
oauth: apiUrl(graphTweet, tweetVars % [id, cursor])
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue