Working with the Google Books API, I'd like to be able to display other books by the same author, but the only 'author'-related filter I'm seeing in the docs is inauthor
, which is looking for any authors that match the text provided:
https://www.googleapis.com/books/v1/volumes?q=inauthor:Richard+Moreno&key=my_key
Returns several books by authors with the first name 'Richard', not specifically 'Richard Moreno'
Is there a parameter I can specify that I want only books by the exact same author?
Or do I need to filter the results myself to try to find an exact match?