Как получить тело каждой почты моей учетной записи Gmail с помощью API Gmail? - PullRequest
2 голосов
/ 07 марта 2019

Я пытаюсь проанализировать каждое тело письма из моей учетной записи gmail, используя службы Google oauth и gmail api. На данный момент я могу получить только идентификатор сообщения и идентификатор потока, когда я их открываю, это вообще не имеет смысла. Итак, следующий код, который я использовал, как показано ниже:

from __future__ import print_function
import pickle
import os.path
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request

# If modifying these scopes, delete the file token.pickle.
SCOPES = ['https://www.googleapis.com/auth/gmail.readonly']

def main():
    """Shows basic usage of the Gmail API.
    Lists the user's Gmail labels.
    """
    creds = None
    # The file token.pickle stores the user's access and refresh tokens, and is
    # created automatically when the authorization flow completes for the first
    # time.
    if os.path.exists('token.pickle'):
        with open('token.pickle', 'rb') as token:
            creds = pickle.load(token)
    # If there are no (valid) credentials available, let the user log in.
    if not creds or not creds.valid:
        if creds and creds.expired and creds.refresh_token:
            creds.refresh(Request())
        else:
            flow = InstalledAppFlow.from_client_secrets_file(
                'credentials.json', SCOPES)
            creds = flow.run_local_server()
        # Save the credentials for the next run
        with open('token.pickle', 'wb') as token:
            pickle.dump(creds, token)

    service = build('gmail', 'v1', credentials=creds)

    # Call the Gmail API
    results = service.users().labels().list(userId='me').execute()
    print(service.users().messages().list(userId='me').execute())
    print(service.users().messages().get(userId='me', id='16931216e3a05048').execute())
    labels = results.get('labels', [])

    if not labels:
        print('No labels found.')
    else:
        print('Labels:')
        for label in labels:
            print(label['name'])

if __name__ == '__main__':
    main()

и вывод, который я получил, такой для одного из идентификаторов сообщений, использующих эту строку print(service.users().messages().get(userId='me', id='16931216e3a05048').execute())

вывод выглядит так: this is the output I have been getting using the above piece of code

1 Ответ

1 голос
/ 07 марта 2019

Вы забыли добавить формат

messages.get

enter image description here

message = service.users().messages().get(userId=user_id, id=msg_id,
                                         format='raw').execute()

print 'Message snippet: %s' % message['snippet']

msg_str = base64.urlsafe_b64decode(message['raw'].encode('ASCII'))

mime_msg = email.message_from_string(msg_str)
...