New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

github.com/nigelsmith/nationbuilder

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/nigelsmith/nationbuilder

v0.0.0-20160531222859-0de842bc8f41
Source
Go
Version published
Created
Source

Nationbuilder

A work in progress implementation of a client for the Nationbuilder remote API.

###Supported Endpoints

  • Basic Pages
  • Blogs
  • Blog Posts
  • Calendars
  • Site
  • Attachments
  • People
  • Events (partial)

with more to come over time.

###Example Usage

Instantiate a client and fetch blog posts:


myNation, err := nationbuilder.NewClient("nationSlug", "apiKey")
if err != nil {
	log.Fatal(err.Error())
}

blogID := 1
// Pass nil for options (default page size is set to 50)
blogPosts, result := myNation.GetBlogPosts("siteSlug", blogID, nil)
if result.HasError() {
	log.Fatal(result.Error())
}

for _, post := range blogPosts.Results {
	fmt.Println(post)
}

Full API documentation is available at: godoc.org

FAQs

Package last updated on 31 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts