Zed
                                            Zed
                                        
                                    Picking 3 by random could work, but I wonder if they rank/sort the list somehow, which would result in worse recommendations of course. Do you know? Looking at some API...
Due to a semi-emergency caused by Twitter I had to make a lot of changes, especially in `routes/timeline.nim`. Let me know if you need help rebasing, I see quite a...
>strictly reverse-chronological, like they are on twitter.com This is not true if you're signed in. 
I believe it is implementable yes, I played around with the required endpoints many moons ago
@shtefcs Following: `https://api.twitter.com/1.1/friends/list.json?screen_name=` Followers: `https://api.twitter.com/1.1/followers/list.json?screen_name=`
You need to authenticate using a guest token. `curl 'https://api.twitter.com/1.1/guest/activate.json' -H "authorization: Bearer AAAAAAAAAAAAAAAAAAAAAPYXBAAAAAAACLXUNDekMxqa8h%2F40K4moUkGsoc%3DTYfbDKbT3jJPCEVnMYqilB28NHfOPqkca3qaAxGfsyKCs0wRbw" -X POST` Then take the token you get, and use the endpoints like this: `curl 'https://api.twitter.com/1.1/followers/list.json?screen_name=elonmusk'...
Not that I know of, just use the cursor (in next_cursor_str, add as query parameter using min_position or max_position not sure which one) to get the next page of responses
It's not documented, that's kinda the nature of it. There are a few articles and PDFs lying around, not too hard to find.
What is the expected behavior?
It was indeed by accident, but it turns out my usage of strformat is a bit slower than simple concats, so the commit will be somewhat reverted. I'll keep this...