Как мне использовать API Google Книг в Python, чтобы получить список моих книжных полок? [закрыто]
I want to get a list of my Google Books bookshelfs public and private. I know it's possible as per google's books api documentation:https://developers.google.com/books/docs/v1/reference/?apix=true
I know i can just do a HTTP get request to get a list of my public bookshelfs:
import requests
r = requests.get('https://www.googleapis.com/books/v1/users/<my google books user id>/bookshelves')
print(r)
I'm struggling to figure out how to use ouath in python to get both private and public bookshelfs.