Twitter has released the official API v2 endpoint for the bookmark feature. https://twittercommunity.com/t/build-with-bookmarks-on-the-twitter-api-v2/168804/
The following descriptions are or will soon be no longer useful; I suggest using the new official API.
I found out the endpoints for bookmark with Chrome Developer Tools: GET timeline/bookmark
, POST bookmark/entries/remove
, POST bookmark/entries/remove
.
The rate limits below are values returned by an official endpoint GET application/rate_limit_status
.
This document is still a work in progress because I got stuck in GET timeline/bookmark
. Please let me know if you find how to use it.
- It is necessary that
x-csrf-token
in a request header andct0
in a cookie are the same value. Twitter uses them to avoid CSRF attacks. I recommend that you extract the values from your browsers. - All of the endpoints requires OAuth2 Authorizations. Note that they refuse OAuth2 Bearer tokens obtained from
POST oauth2/token
. - You can easily reach the rate limit and get HTTP 429 Error (too many requests), so you should be careful about how many requests you send.
- I have heard that someone said that "GET timeline/bookmark" returned HTTP 403 Error even though OAuth authentication succeeded. Maybe the endpoint refuses mechanical accesses.
- In some cases, perhaps it is better to use the official TweetDeck Collection API instead of the undocumented and uncertain API.
- cf: https://github.com/geekodour/twitmarks/ / https://github.com/acorn/twitter-bookmarks-search (It seems the developers understand how to use the endpoints)
@jborichevskiy, Thanks for your comment and awesome information!
I'm confused at the complicated responses of
/2/timeline/bookmark.json
so I really appreciate your helpful analysis! :-)Now I'm investigating how
/1.1/bookmark/entries/add.json
and/1.1/bookmark/entries/remove.json
works and trying to resolve some issues.First, I extracted my requests' data from my browser, and got the following request with chrome devtools:
(I replaced some personal data with "XXX" instead)
In original request
AAAAA
was a tweet ID integer that every tweet has its own.Then I tried to POST the same request with Postman, but I failed; it returned
{'errors': [{'code': 32, 'message': 'Could not authenticate you.'}]}
.I suppose that's because I sent the wrong OAuth2 token, but I'm not sure.
I'll update here too if I make progress.