Ver a proveniência

Merge branch 'v3' into context-support

pull/25/head
Matt Baer há 1 ano
committed by GitHub
ascendente
cometimento
2e3644c55b
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 4AEE18F83AFDEB23
2 ficheiros alterados com 7 adições e 3 eliminações
  1. +6
    -2
      collection.go
  2. +1
    -1
      go.mod

+ 6
- 2
collection.go Ver ficheiro

@@ -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 Ver ficheiro

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

go 1.9



Carregando…
Cancelar
Guardar