VB.net
Using JIRA.SDK api for the JIRA REST method
Dim jira2 As Jira.SDK.Jira = New Jira.SDK.Jira()
Dim jira2 As Jira.SDK.Jira = New Jira.SDK.Jira()
jira2.Connect("https://mdc-tomcat-jira00.soft.org/jira/", TextBox2.Text, TextBox3.Text)
Dim fil As Jira.SDK.Domain.IssueFilter = jira2.GetFilter("NANANANA")
Dim joo As System.Collections.Generic.List(Of Jira.SDK.Domain.Issue) = fil.GetIssues(maxResults:=700)
With this code everything works so good and it is letting me access the issue and its fields properly only when the filter is created by me. On other user workstations I am not able to access the filter by the tool but normally via JIRA in chrome it can be accessed.
Please provide any of the following solutions
- way to make the JIRA access permissions available in JIRA.SDK to the filter.
- provide help on how to search in JIRA.SDK by jql
Please provide a solution to this as soon as you can.