Kaynağa Gözat

Merge branch 'v3' into context-support

pull/25/head
Matt Baer 1 yıl önce
committed by GitHub
ebeveyn
işleme
2e3644c55b
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
2 değiştirilmiş dosya ile 7 ekleme ve 3 silme
  1. +6
    -2
      collection.go
  2. +1
    -1
      go.mod

+ 6
- 2
collection.go Dosyayı Görüntüle

@@ -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 Dosyayı Görüntüle

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

go 1.9



Yükleniyor…
İptal
Kaydet