0

So I have a requirement to process a file when it is uploaded to a particular folder in OneDrive. An Azure Function would be nice to use for this purpose.

Here's what I see when trying to set this up in the Azure portal: enter image description here

Is it even possible to do this in the portal either v3 or v2 of the Azure Functions runtime? I tried to follow the steps documented here but I find them a little less-explicit and difficult to interpret/follow.

If anyone has any better examples to follow, please be so kind to share. I'm confused as to what approach to take (e.g. portal, VS Code, VS)

Steve Boniface
  • 571
  • 1
  • 11
  • 23

1 Answers1

1

Currently it is recommended that we use the classic function UI in azure portal as there are some issues in the new UI.

enter image description here

And I found that Microsoft Graph bindings are currently in preview for Azure Functions version 2.x and higher. For preview version, we don't recommend that you use them in your production apps.

enter image description here

The workaround is that you use Azure Logic Apps instead.

Reference:

Access and manage files in OneDrive connector by using Azure Logic Apps

Tony Ju
  • 14,891
  • 3
  • 17
  • 31