Refresh token not coming through. #959
Unanswered
wmckenziepyt
asked this question in
Q&A
Replies: 1 comment 3 replies
-
I don't understand your problem |
Beta Was this translation helpful? Give feedback.
3 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.
-
here is my script
from O365 import Account,MSOffice365Protocol,MSGraphProtocol
credentials = ('cientgobldeeguk','secretgobldeeguk')
scopeList = ['offline_access','https://outlook.office.com/Mail.Read',
'https://outlook.office.com/User.Read',
'https://outlook.office.com/Mail.Send',
'https://outlook.office.com/Mail.Read.Shared',
'https://outlook.office.com/Mail.Send.Shared','https://outlook.office.com/email']
protocol = MSOffice365Protocol(default_resource='[email protected]')
account = Account(credentials=credentials, protocol=protocol )
if account.authenticate(scopes = scopeList):
print('Authenticated!')
we have offline access enable in graph on azure as well. Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions