英文:
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调用的参考资料吗?
英文:
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:
Can I get any reference for REST API call using C#
答案1
得分: 1
你需要使用POST而不是GET来执行该操作。
查看这个链接以了解如何操作。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论