You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am having trouble trying to automate the download of some emails from a mailbox.
I want the script to exit with a timeout error and warn me if the authentication cannot be completed, instead of just waiting for input at the "Paste the authenticated url here:" phase (here in the code, I guess: https://github.com/O365/python-o365/blob/master/O365/connection.py#L983).
I tried passing the timeout parameter to both the Account creation and the account.authenticate function, without success.
This is the relevant part of the code.
$ python test_o365.py
Visit the following url to give consent:
https://login.microsoftonline.com/[ ... ]/oauth2/v2.0/authorize?response_type=code&client_id=[ ... ]&redirect_uri=https%3A%2F%2Flogin.microsoftonline.com%2Fcommon%2Foauth2%2Fnativeclient&scope=[ ... ]&state=[ ... ]&access_type=offline&timeout=60.0
Paste the authenticated url here:
Could you possibly add a timeout feature here?
Thank you very much.
Kind regards.
The text was updated successfully, but these errors were encountered:
Dear @alejcas ,
Thank you for your response. I'm having trouble with the input function that shows the "Paste the authenticated url here:" text, not the Requests session.
For me, the best option would be that the input function has some sort of timeout, but I don't know how to implement it :(
Ohh I see. The default auth method uses the console. There’s no possibility of a timeout there. You should implement another method that allows that. look through the readme
Hello,
I am having trouble trying to automate the download of some emails from a mailbox.
I want the script to exit with a timeout error and warn me if the authentication cannot be completed, instead of just waiting for input at the "Paste the authenticated url here:" phase (here in the code, I guess: https://github.com/O365/python-o365/blob/master/O365/connection.py#L983).
I tried passing the timeout parameter to both the Account creation and the account.authenticate function, without success.
This is the relevant part of the code.
And this is where it stops after being launched.
Could you possibly add a timeout feature here?
Thank you very much.
Kind regards.
The text was updated successfully, but these errors were encountered: