0

I want to upload a csv file in SharePoint via NiFi, is it possible? I can't find a processor that allows to ingest a csv file in SharePointe via NiFi, thank you for your help

I tried to search for processor PutSharePointList or PutSharePointOnline in https://repo1.maven.org/maven2/org/apache/nifi/ but I can't find it

Jemna81
  • 41
  • 4
  • You could try achieving the same using the `InvokeHTTP` processor and upload the file using the Sharepoint Rest API. You can find some details [here](https://learn.microsoft.com/en-us/sharepoint/dev/sp-add-ins/upload-a-file-by-using-the-rest-api-and-jquery) – DataWrangler Feb 14 '23 at 12:07

1 Answers1

1

There is no processor to connect directly to SharePoint but you can use REST API. I had the same problem and i followed this tutorial where they explain step by step, and i was able to upload my files to SharePoint using nifi, I hope it helps you too.

Andrés O.
  • 26
  • 1