Get email from shared email #784
Unanswered
azreal1231
asked this question in
Q&A
Replies: 1 comment
-
I've never before see that error message. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, ive got an authed app but now im trying to access emails from a shared email. this is what ive implemented atm.
email_add = 'the-shared-email-address'
credentials = (APPLICATION_ID, CLIENT_SECRET)
account = Account(credentials=credentials, scopes=scopes)
mailbox = account.mailbox(resource=email_add)
inbox = mailbox.get_folder(folder_name='Inbox')
for message in inbox.get_messages(5):
print(message)
print('-' * 50)
-----------------------------------ERROR-------------------------------------------------
Error Message: The specified object was not found in the store., The process failed to get the correct properties.
Beta Was this translation helpful? Give feedback.
All reactions