Google Play 개발자 API가있는 Google 개발 콘솔 프로세스가 사용 설정되어 있고 프로젝트가 Google Play 프로젝트에 연결되어 있습니다. Google 개발자 콘솔 프로젝트에서 OAuth 클라이언트 ID (웹 애플리케이션)를 생성했습니다 (프로젝트 소유자). "client_id"및 "client_secret"을 사용하여 인증합니다. Python에서 google-api-client를 사용하여 Google 개발자 API 놀이터에서 앱 리뷰를 요청했지만 오류가 발생했습니다 : "현재 사용자에게 요청한 작업을 수행 할 권한이 없습니다." 아래와 같이 세부 사항 : 요청 :Google Play 개발자 API - '현재 사용자에게 요청한 작업을 수행 할 권한이 없습니다.'
GET /androidpublisher/v2/applications/<package_name>/reviews
응답 :
"error": {
"code": 401,
"message": "The current user has insufficient permissions to perform the requested operation.",
"errors": [
{
"domain": "androidpublisher",
"message": "The current user has insufficient permissions to perform the requested operation.",
"reason": "permissionDenied"
}
]
}
}
난 아무것도 그리워 했습니까?
다른 사람을 도움이 될 것입니다 API 사용 –