I developed a tool to show you your twitter friends on #mastodon: https://www.movetodon.org/
π All data stays in your browser
π No CSV import neccesary
π List can be sorted by sign-up date, so that you can find new accounts fast
I developed a tool to show you your twitter friends on #mastodon: https://www.movetodon.org/
π All data stays in your browser
π No CSV import neccesary
π List can be sorted by sign-up date, so that you can find new accounts fast
@Tibor
Isn't the claim "All data stays in your browser" kind of misleading?
To me it looks like all the data and access tokens are passed through your server.
Or am I missing something?
The last time I checked, it wasn't possible to do this browser-only, because twitter was missing a simple CORS header π.
@Tibor
To me "All data stays in your browser" means, that there is no party that could get a hold on my data, even if it wanted to, so no 3rd party to trust. But there is, which I find misleading.
If there would be a CORS header, one could use a "public client" and query the twitter API directly from the browser, truly keeping the data in the browser -but sadly the header is missing.
@stof
No, I mean CORS. Because the twitter API is on a different origin, a header is required to access it from a non-twitter domain in the browser. That header is missing.
https://stackoverflow.com/a/35898961
You can access the twitter API from the browser by using a cors-proxy, that sets that header. (There are some available publicly, I think)