When the user adds a app engine project service account as a share, you can always access it, without the OAuth2 dance.
Your app engine project service account looks like : example@appspot.gserviceaccount.com
You can find information here : https://developers.google.com/drive/service-accounts#google_app_engine_project_service_accounts
def _init_service_account(self):
if os.environ['SERVER_SOFTWARE'].startswith('Development') :
logging.warning('Service account not used in development')
return None
else :
SCOPE = 'https://www.googleapis.com/auth/drive'
API_KEY = '.....' # GAE
credentials = AppAssertionCredentials(scope=SCOPE)
logging.info('service account : ' + app_identity.get_service_account_name())
http = credentials.authorize(httplib2.Http())
return build('drive', 'v2', http=http, developerKey=API_KEY)