0

我配置了一个 Concur Sandbox 并使用了 api。由于 .Net SDK 不支持 User api,我编写了以下代码。

问题是费用代码有效(返回 200 和验证结果),但用户代码返回 401 Unauthorized。

花费

  using (var httpClient = new HttpClient())
  {
     httpClient.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("OAuth", oauthAccessToken);
      httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/xml"));

      var requestUri = "https://www.concursolutions.com/api/v3.0/expense/receiptimages";
      var respone = await httpClient.GetAsync(requestUri);
      if (respone.IsSuccessStatusCode)
      {
         var result = respone.Content.ReadAsStringAsync();
         //throw new InvalidUriException(string.Format("Invalid uri: {0}", requestUri));
        }
      }

理想情况下,这也应该像以前的代码一样工作,用户

  using (var httpClient = new HttpClient())
            {
                httpClient.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("OAuth", oauthAccessToken);
                httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/xml"));

                var requestUri = "http://www.concursolutions.com/api/v3.0/common/users?user=user1%40company.net";
                var respone = await httpClient.GetAsync(requestUri);
                if (!respone.IsSuccessStatusCode)
                {
                    //throw new InvalidUriException(string.Format("Invalid uri: {0}", requestUri));
                }
            }
        }

我认为这是一个权限问题,但我给予了足够的权限。

这是 Administration->Webservice 应用程序配置,

概括

应用程序配置

4

1 回答 1

0

问题是用户 Api 调用需要是 https。

于 2016-03-29T23:23:02.273 回答