Call在Postman中起作用,但在C#中不起作用

问题描述 投票:0回答:3

我正在尝试调用下面的URL,它在浏览器(Chrome)和Postman中都可以正常工作,但是由于某些原因,它在C#中不起作用。

在浏览器中工作:http://[email protected]/api/categories

在邮递员工作:http://[email protected]/api/categories

在C#中不起作用(RestSharp):

var client = new RestClient("http://[email protected]/api/categories"); 
var request = new RestRequest(Method.GET);
request.AddHeader("cache-control", "no-cache");
request.AddHeader("User-Agent", @"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36");
IRestResponse response = client.Execute(request);

响应:401未经授权enter image description here

P.S。如果我删除User-Agent仍然不起作用。为什么我在这里做错了?

c# postman restsharp
3个回答
0
投票

进入邮递员,在提交请求后,如果没有在“授权”标签中指定任何内容,请检查“标题”标签中是否有“临时标题”部分中添加的内容。

在此示例中,我没有调出Authorization标头,但Postman仍然提供了一个标头:

enter image description here

然后将缺少的相关标头添加到您的代码中。我喜欢单击请求最右边的“代码”按钮。它为您提供了一个下拉菜单,以便您可以选择所需语言的预生成代码。这很可能为您提供可重复的示例。

enter image description hereenter image description here


0
投票

RestClient构造函数接受不包含userinfo的URI>

          userinfo       host      port
          ┌──┴───┐ ┌──────┴──────┐ ┌┴┐
  https://[email protected]:123/forum/questions/?tag=networking&order=newest#top
  └─┬─┘   └───────────┬──────────────┘└───────┬───────┘ └───────────┬─────────────┘ └┬┘
  scheme          authority                  path                 query           fragment

参见:https://en.wikipedia.org/wiki/Uniform_Resource_Identifier

为了使其与RestSharp一起使用,我们需要在此处做一些额外的工作:

// Old:
// var client = new RestClient("http://[email protected]/api/categories"); 

// New:
var client = new RestClient("http://presta.craftingcrow.com/api/categories")
{
    Authenticator = new HttpBasicAuthenticator("AJWKBLWT47VR26QWPNFCPJLXC6217F6F", "")
};

0
投票

感谢约书亚&冯!

© www.soinside.com 2019 - 2024. All rights reserved.