I receive emails every week, and these mails are structured as follows : Core mail with a message attachment ( an another email ) -> and in this second email, contains ax excel file that I want to download.
I'm using python and microsoft GRAPH API with the request : https://graph.microsoft.com/v1.0/me/messages/{1stmail}/attachments/{attachmentOf1stMail}/$value
I managed to access my excel sub-file like this : screen from the request
But now I want to download only the file, and access it locally. Can I have some help to perform this ?
Thanks.