Fred’s Comments (group member since Jan 04, 2020)


Fred’s comments from the Goodreads Developers group.

Showing 1-5 of 5

Apr 25, 2020 11:05AM

8095 Not my bag either, thanks for the help. I got the GET working (at least once).
Apr 24, 2020 02:18PM

8095 @Michael, that's so annoying. Did you use head or header? And did you do a GET or POST request? I can't get either to work.
Apr 23, 2020 01:34PM

8095 I'm using vanilla JS to authenticate with OAuth. The URL I'm using returns a 401, either in my app or testing with Postman.

The format I'm using is: https://www.goodreads.com/oauth/reque.... I've also tried adding '&head=True' or '&header=True'.

What am I missing here? Thanks in advance!
Jan 04, 2020 05:30PM

8095 Oleg wrote: "You can't do it.
You should request page by page according you per_page value"


Got it, thank you.
Jan 04, 2020 10:14AM

8095 I'm trying to get a list of all the books I've reviewed in a single response. It's not working because I can't return multiple pages of results at once.

I'm using the reviews.list API (https://www.goodreads.com/api/index#r...).

Putting 200 results on a page works (&per_page=200) works but doesn't cover the full length of my list.

The docs say to use 'page: 1-N (optional)'. Specifying a single page works ('&page=3'), but I can't get it to accept a range, ex: '&page=1-10'.

Thanks in advance for your help.