Since the docs are horrible I think making a megathread here with Q&As and best practices for endpoints would be nice. Would’ve certainly helped me when I started out.

What do you guys think?

  • blawsybogsy@lemmy.ml
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    i’m building a client, happy to help if i can, also to receive help! main issues i have had so far is how to actually use a number of the methods’ parameters, like limit (whats the max value?), page (how does pagination actually work?), etc. so far i have been storing any useful info about the API (like the valid values for a given type) in my own lists then querying them in my code.

    • Cr4yfish@lemmy.worldOP
      link
      fedilink
      arrow-up
      1
      ·
      1 year ago

      What’s the exact problem with the pagination? Basically you set the page param to the page you want to receive. The amount of pages is unknown to the client, you just know how many per Page you receive (the limit).

      However, I’d recommend to make infinite scrollers anyway.

      • Cr4yfish@lemmy.worldOP
        link
        fedilink
        arrow-up
        1
        ·
        1 year ago

        Yeah but I think having a central post to aggregate common questions would be a benefit to everyone, especially new devs.