Without having a solution to back this up; but have you explored the O365 REST APIs for this purpose? As an example we no longer developed a specific connector for excel, instead we use REST to integrate excel files via O365 APIs.
Thank you both, I’ll revert back when I have more questions. But it sounds like my hopes are possible. Although I didn’t find the documentation for the Excel. But I found some ideas for Outlook.
Hi,
stumbled upon my old flow and connector config in the meantime.
Its a test/debug connector so its a bit of a mess but i remember being able to get mail attachments using Client auth (I used Get Token, List Messages and List Attachments operations)
(First rename 1 Rest.ncrcp to 1 Rest.json , import 1 Rest in Connectors and then go into Edit of that newly created connector and import 2 Content)
I cannot figure out how to configure the connector. I imported what you provided Ivan and I don’t know where to put “my” information to be able to open my mailbox.
I had the first part of the following completed for me, and I have a client id and client secret, but when I open the connector there is no place to put those…any ideas?
in the uploaded example client_id and client_secret are not set as Global Params but are specified as constant value in the Get Token operation (its an old flow and thats just how we did it back in the day )
Ok, this is kinda awesome. I got connected, thanks to you Ivan. And I am reading messages.
Now I need to use many more of the functions of MS Graph…do you know of a swagger file I can import so I don’t have to create these things one at a time?
(But it seems to be big, keeps crashing my connector while saving after import…so maybe delete the operations you dont need before saving (thats what i am gonna try next ))
I tried importing the swagger file and it works ok if you break it down to smaller portions (e.g. from presliced swagger files) BUT seems like the Flow rest connector cannot really handle the generic 2xx reponses.
It will instead always convert it to Response Default, which results in multiple responses with the same name and thus an Error.
To only handle 200 responses and Errors it would work if the 2xx: in the swagger file is replaced by 200, but that would only cover responses with status code 200. Otherwise it would always go to the default. Might figure out a workaround by scripting to manually create the entries in the file per status code you want enabled.