如何使用C#中的REST API上传文件到SharePoint

huangapple go评论118阅读模式
英文:

How to upload file to SharePoint using REST API in C#

问题

我正在尝试使用C#将文件上传到SharePoint。我已经获取了访问令牌,但无法上传文件,我已经查阅了一些参考资料,并尝试使用Postman进行测试。

当我使用Postman时,我遇到了以下错误:

> <m:message xml:lang="en-US">HTTP方法 'GET' 无法用于访问资源 'Add'。资源的操作类型已指定为 'Default'。请使用正确的HTTP方法来调用资源。</m:message>

这是我的Postman请求:

如何使用C#中的REST API上传文件到SharePoint

我可以获取关于在C#中使用REST API调用的参考资料吗?

英文:

I am trying to upload a file to SharePoint using C#. I am getting access token, but I am not able to upload file, I have to gone through few references and tried to see if I can do it using Postman at least.

I am getting below error when I tried with Postman:

> <m:message xml:lang="en-US">The HTTP method 'GET' cannot be used to access the resource 'Add'. The operation type of the resource is specified as 'Default'. Please use correct HTTP method to invoke the resource.</m:message>

Here is my Postman request:

如何使用C#中的REST API上传文件到SharePoint

Can I get any reference for REST API call using C#

答案1

得分: 1

你需要使用POST而不是GET来执行该操作。

查看这个链接以了解如何操作。

英文:

You need to use a POST instead of GET for that operation.

Check out this link to find out how.

huangapple
  • 本文由 发表于 2023年7月31日 18:41:52
  • 转载请务必保留本文链接:https://go.coder-hub.com/76802842.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定