In my organization we have an in-house developed web application that relies on the Google apps provisioning API to allow our level 1 IT department to manage email accounts and email groups. However, since google deprecated the API in favour of the Admin's SDK Directory API some of the functionality of our web application has stopped working, so it's time to start re-writing the back end of the web application.
However, the problem we're facing is that the new API uses oAuth 2.0 authentication, where as the old API I could just hard code an admin user and get an authorization token, the whole idea was to minimize the amount of users and credentials with admin privileges to the domain.
So the question is, is there any way that I can have this 'dummy' user authorize the app once and never again to have a similar architecture like what we had before? though I admit the better question is: what is the best practice to follow in this case?
The authentication flow that best suits your case is two-legged-oauth. With oauth 2.0, you need to set up Service Account Credentials.
To build the admin service with Service Account Credentials: