Skip to content

jiachengxu/raindrop-sdk-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

raindrop-sdk-go

Unofficial Raindrop.io Go SDK.

Create an Access Token

Follow the offiical raindrop.io authentication documentation to create an access token, which will be used by the SDK.

Installation

go get github.com/jiachengxu/raindrop-sdk-go@v0.1.0

Examples

package main

import (
	"fmt"

	"github.com/jiachengxu/raindrop-sdk-go"
)

func main() {
	client := raindrop.NewClient("your_test_token_here")

	// Example: Get collections
	collections, err := client.GetRootCollections()
	if err != nil {
		fmt.Println("Error fetching collections:", err)
		return
	}

	fmt.Println(collections)
}

About

Unofficial raindrop.io Go SDK

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages