Hi,
When I run the following code, it goes through successfully:
RestRequest request = new RestRequest("/rest/api/2/search") { Method = Method.GET };
var response = client.Execute(request);
This returns a list of all of the issues. However, if I try to get issues by Project Key like the following:
RestRequest request = new RestRequest("/rest/api/2/search?jql=\"KEY\"") { Method = Method.GET };
var response = client.Execute(request);
This gives me an unauthorized error.
Is it a setting in the project itself that I need to fix to allow this? I’m sure I am authenticating right since the first call works fine and many other calls are working as well.