Browse Source

Merge branch 'v3' into context-support

pull/25/head
Matt Baer 1 year ago
committed by GitHub
parent
commit
2e3644c55b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions
  1. +6
    -2
      collection.go
  2. +1
    -1
      go.mod

+ 6
- 2
collection.go View File

@@ -92,9 +92,13 @@ func (c *Client) GetCollection(ctx context.Context, alias string) (*Collection,
// GetCollectionPosts retrieves a collection's posts, returning the Posts
// and any error (in user-friendly form) that occurs. See
// https://developers.write.as/docs/api/#retrieve-collection-posts
func (c *Client) GetCollectionPosts(ctx context.Context, alias string) (*[]Post, error) {
func (c *Client) GetCollectionPosts(ctx context.Context, alias string, page int) (*[]Post, error) {
coll := &Collection{}
env, err := c.get(ctx, fmt.Sprintf("/collections/%s/posts", alias), coll)
q := ""
if page > 0 {
q = fmt.Sprintf("?page=%d", page)
}
env, err := c.get(ctx, fmt.Sprintf("/collections/%s/posts%s", alias, q), coll)
if err != nil {
return nil, err
}


+ 1
- 1
go.mod View File

@@ -1,4 +1,4 @@
module github.com/writeas/go-writeas/v2
module github.com/writeas/go-writeas/v3

go 1.9



Loading…
Cancel
Save