We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 064ec88 commit 4b9aec6Copy full SHA for 4b9aec6
src/api.nim
@@ -42,7 +42,8 @@ proc userTweetsAndRepliesUrl(id: string; cursor: string): ApiReq =
42
proc tweetDetailUrl(id: string; cursor: string): ApiReq =
43
let cookieVars = tweetDetailVars % [id, cursor]
44
result = ApiReq(
45
- cookie: apiUrl(graphTweetDetail, cookieVars, tweetDetailFieldToggles),
+ # cookie: apiUrl(graphTweetDetail, cookieVars, tweetDetailFieldToggles),
46
+ cookie: apiUrl(graphTweet, tweetVars % [id, cursor]),
47
oauth: apiUrl(graphTweet, tweetVars % [id, cursor])
48
)
49
0 commit comments