I am trying to call GCP App Engine REST API- https://cloud.google.com/appengine/docs/admin-api/reference/rest/v1/apps/get from API explorer as well as postman . This gives http code 403 . I am able to deploy service from my local using cloud sdk with same user account. Not sure why only REST API is not working. Any body else faced this issue.
Request - GET https://appengine.googleapis.com/v1/apps/test?key=[YOUR_API_KEY] HTTP/1.1 Authorization: Bearer [YOUR_ACCESS_TOKEN] Accept: application/json Response- { "error": { "code": 403, "message": "The caller does not have permission", "status": "PERMISSION_DENIED" } } roles added to my principle- App Engine Admin, App Engine Code Viewer, App Engine Deployer, App Engine Service Admin, App Engine Viewer, Owner -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/82e44b68-5045-484b-81a4-210f82d2b069n%40googlegroups.com.
