我正在尝试在App Engine应用程序中构建自己的端点。 有一个端点API需要询问用户 " https://www.googleapis.com/auth/drive.readonly"范围。 它会执行Drive API列表并扫描该用户的驱动器文件。
问题是我不知道如何在端点API内调用Drive api。
我认为在端点方法中,它具有我们从用户获得的凭据。但我不知道如何收到它。
我使用python作为后端语言。
@drivetosp_test_api.api_class(resource_name='report')
class Report(remote.Service):
@endpoints.method(EmptyMessage, EmptyMessage,
name='generate',
path='report/generate',
http_method='GET'
)
def report_generate(self, request):
logging.info(endpoints)
return EmptyMessage()
答案 0 :(得分:1)
您可以使用os.environ
访问HTTP授权标头,其中包含访问令牌,该标头已授予您在客户端请求的所有范围,包括样本中的drive.readonly
。
if "HTTP_AUTHORIZATION" in os.environ:
(tokentype, token) = os.environ["HTTP_AUTHORIZATION"].split(" ")
然后,您可以使用此令牌直接或使用Google APIs Client Library for Python调用API:
credentials = AccessTokenCredentials(token, 'my-user-agent/1.0')
http = httplib2.Http()
http = credentials.authorize(http)
service = build('drive', 'v2', http=http)
files = service.files().list().execute()
请注意,如果您使用的是Android客户端,则此方法无效,因为它使用ID令牌授权而不是访问令牌。