Go client for the Write.as API https://developers.write.as
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Sam Whited d577f3277f Support Go Modules 5年前
.github Add GitHub issue template 6年前
.gitignore Initial commit 8年前
LICENSE Add README and LICENSE 7年前
README.md Fix examples in README 5年前
auth.go Rearrange status checks in LogIn 5年前
auth_test.go Add authentication test 5年前
collection.go Rearrange status checks in CreateCollection 5年前
collection_test.go Support retrieving auth'd user's collections 5年前
go.mod Support Go Modules 5年前
go.sum Support Go Modules 5年前
post.go Rearrange status checks in UpdatePost 5年前
post_test.go Fix post tests 5年前
user.go Add UserSubscription struct 6年前
writeas.go Add Token getter 5年前

README.md

go-writeas

godoc

Official Write.as Go client library.

Installation

go get go.code.as/writeas.v1

Documentation

See all functionality and usages in the API documentation.

Example usage

import "go.code.as/writeas.v1"

func main() {
	// Create the client
	c := writeas.NewClient()

	// Publish a post
	p, err := c.CreatePost(&writeas.PostParams{
		Title:   "Title!",
		Content: "This is a post.",
		Font:    "sans",
	})
	if err != nil {
		// Perhaps show err.Error()
	}

	// Save token for later, since it won't ever be returned again
	token := p.Token

	// Update a published post
	p, err = c.UpdatePost(&writeas.PostParams{
		OwnedPostParams: writeas.OwnedPostParams{
			ID:    p.ID,
			Token: token,
		},
		Content: "Now it's been updated!",
	})
	if err != nil {
		// handle
	}

	// Get a published post
	p, err = c.GetPost(p.ID)
	if err != nil {
		// handle
	}

	// Delete a post
	err = c.DeletePost(&writeas.PostParams{
		OwnedPostParams: writeas.OwnedPostParams{
			ID:    p.ID,
			Token: token,
		},
	})
}

Contributing

The library covers our usage, but might not be comprehensive of the API. So we always welcome contributions and improvements from the community. Before sending pull requests, make sure you’ve done the following:

  • Run go fmt on all updated .go files.
  • Document all exported structs and funcs.

License

MIT