Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cryptix/gombrella
extract bookmarks from raindrop.io
https://github.com/cryptix/gombrella
Last synced: 21 days ago
JSON representation
extract bookmarks from raindrop.io
- Host: GitHub
- URL: https://github.com/cryptix/gombrella
- Owner: cryptix
- License: mit
- Created: 2014-12-10T14:41:06.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-10T15:53:01.000Z (almost 10 years ago)
- Last Synced: 2024-10-08T00:21:07.192Z (about 1 month ago)
- Language: Go
- Size: 148 KB
- Stars: 9
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- project-awesome - cryptix/gombrella - extract bookmarks from raindrop.io (Go)
README
# extract bookmarks from raindrop.io
the api documentation is declared as [`soon`](https://raindrop.io/pages/dev) since they launched and apperantly they [want to charge](https://raindrop.io/static/love) now for backing up your content.
I respect that they want to cover their costs with such a model and not mine out their users data but I don't want to pay to get my data back. So I hacked this together, you mainly just have to do 2 requests to get the list of collection ids. you can do so with curl as well.
## Requests
The system is build with express and uses JSON for everything
### Login
`https://raindrop.io/api/auth/login`Body:
```
{
"email": "...",
"password": "..."
}
```### Collections and Bookmarks
`https://raindrop.io/api/collections` for the List of IDs of collectionsSee [types.go](https://github.com/cryptix/gombrella/blob/master/types.go) for a description of the fields in the response.
## Usage
```
gumbrealla
```## Installation
if you have go installed you can just run:
`go get github.com/cryptix/gombrella`
Pre-build binaries are hosted at [bintray.com](https://bintray.com/cryptix/golang/gombrella)