我正在尝试获得OAuth令牌来访问某些FedEx API (比如用于跟踪发货的跟踪API ),但我得到了一个401 (NOT.AUTHORIZED.ERROR -> "The given client credentials were not valid. Please modify your request and try again") error. (目前,我正在使用Postman尝试测试这些API)。
下面是我使用的url,由FedEx:https://apis-sandbox.fedex.com/oauth/token提供
我遵循了(据我理解)应该如何设置主体和
我使用postman并发出api post请求,在其中我使用x-www-form-urlencoded键/值添加body,它在postman中工作得很好。
当我使用c#包从RestSharp中尝试它时,问题就出现了。
我已经尝试了下面的代码,但没有得到响应。我得到了"BadRequest“invalid_client错误。
public class ClientConfig {
public string client_id { get; set; } = "value here";
public string grant_type { get; set
我正在用angular写一篇文章。我已经在Postman中成功地做到了这一点,所以我现在只是尝试在我的angular应用程序中获得它。 当我尝试在angular中发出请求时,我得到一个 Status Code: 415 / Unsupported Media Type 控制台中还有一个很长的错误代码 ERROR Error: Uncaught (in promise): HttpErrorResponse: {"headers":{"normalizedNames":{"_t":"Map","_i":{},
我正在使用postman客户端对JIRA API进行REST调用。上面写着"POST your credentials to “来获取会话。我试着使用Form-data,application/x-www-form-urlencoded,raw等进行发布,但都不起作用。这才是正确的做法。
下面是我正在学习的教程:
var client = new RestClient("https://seller.digikala.com/Account/Login");
var request = new RestRequest(Method.POST);
request.AddHeader("postman-token", "0e4d8dba-29da-0b26-1b43-1bf974e9b5de");
request.AddHeader("cache-control", "no-cache");
request.AddHe
我尝试使用auth0邮递员模板通过用户名和密码发出身份验证请求,但得到了一个unsupported grant type: password error。我做错了什么?
var client = new RestClient("https://test.auth0.com/oauth/token");
var request = new RestRequest(Method.POST);
request.AddHeader("postman-token", "abc");
request.AddHeader("cache-control&