我试图使用google api python客户端和play dev api从Playstore获取我的应用程序的所有评论。
现在,如果我打印response
,我会
<googleapiclient.discovery.Resource object at 0x10302a990>
什么时候(我认为)我应该得到我的应用程序的所有评论。不确定我的代码是错误的,还是我没有正确获得权限。
谢谢!
代码:
from google.oauth2 import service_account
import googleapiclient.discovery
SCOPES = ['https://www.googleapis.com/auth/androidpublisher']
SERVICE_ACCOUNT_FILE = 'playcreds.json'
credentials = service_account.Credentials.from_service_account_file(
SERVICE_ACCOUNT_FILE, scopes=SCOPES)
playstore = googleapiclient.discovery.build('androidpublisher','v2', credentials=credentials)
response = playstore.reviews()