Google App Engine - How to get a list of all application administrators?

I want to programmatically get a list of all application administrators from an application. However, I did not find any APIs in the User Service section that can do this. Is there any way or any undocumented API for this?

+5
source share
1 answer

No, there is no API to programmatically list administrators for your application. However, you can create an advanced user model that includes additional information like this.

I'm not sure why you need a list of all administrators, but if you just want to send them by email, you can use send_mail_to_admins().

+2
source

All Articles