Coder Social home page Coder Social logo

Question on pagination about go-mastodon HOT 2 CLOSED

mattn avatar mattn commented on May 23, 2024
Question on pagination

from go-mastodon.

Comments (2)

178inaba avatar 178inaba commented on May 23, 2024

@carbontwelve
I tried to get the status of the bot account in mastodon.cloud.
https://mastodon.cloud/web/accounts/556729

package main

import (
	"context"
	"fmt"
	"log"

	"github.com/mattn/go-mastodon"
)

func main() {
	c := mastodon.NewClient(&mastodon.Config{
		Server:       "https://mastodon.cloud",
		ClientID:     "foofoo",
		ClientSecret: "barbar",
	})

	ctx := context.Background()

	if err := c.Authenticate(ctx, "email", "password"); err != nil {
		log.Fatal(err)
	}

	pg := mastodon.Pagination{}
	page := 1
	for {
		ss, err := c.GetAccountStatuses(context.Background(), "556729", &pg)
		if err != nil {
			log.Fatal(err)
		}

		fmt.Printf("%d, Messages Found: %d\n", page, len(ss))
		for _, s := range ss {
			fmt.Printf("%v\n", s.ID)
		}
		fmt.Printf("%+v\n", pg)

		if pg.MaxID == "" {
			break
		}
		pg.SinceID = ""
		pg.MinID = ""
		fmt.Printf("%+v\n", pg)
		time.Sleep(3 * time.Second)
		page++
	}
}

This worked.
I have obtained 125 pages of 20 results.
(I got the following string 125, Messages Found: 20)
I confirmed that I could get over 70 pages, so I stopped it at 125 pages.

Perhaps the instance you are using has API restrictions.

from go-mastodon.

carbontwelve avatar carbontwelve commented on May 23, 2024

I did some experimenting after posting this issue and have discovered something interesting. I have an account on one instance that I last posted to in 2019, the API returned no results; however as soon as I began posting statuses on it I was able to obtain those. Similarly on the instance where I am able to get 70 pages of 20 items plus one page of 8 I posted enough statuses to push that over to 72 in total and re-ran my code to find it happily chugged through to 72 pages.

I did wonder if because my access of /api/v1/accounts/:id/statuses is unauthenticated (i'm only interested in public statuses anyway) that it hides posts beyond a certain time frame but I was able to get my first toot published on 08/27/2018 @ 8:22pm from my first instance.

In either case it's a bit weird but I am able to get a history, it might not be complete but it's good enough for my use and I am able to download statuses posted after I last ran my programme.

from go-mastodon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.