하나의 API 호출에서 전자 메일 헤더 및 전자 메일 본문을 가져 오는 방법이 있습니까?하나의 API에서 본문 및 헤더 가져 오기
headers = service.users().messages().get(userId='me', id=message['id'], format='metadata').execute()
msg = service.users().messages().get(userId='me', id=message['id']).execute()
을하지만 하나의 호출에 그것을 할 수 있다면 더 빠른 것 :
나는 두 통화에서 그것을 할 수 있습니다.
아이디어가 있으십니까?