I want to connect my JIRA Server using WPF C#.net environment.
I but confused how to use JIRA REST API, Anyone can help me or post some examples...
Thanks
The REST API is not language dependent. Atlassian keep the examples very simple and use curl to send commands over (as you don't need to write any code).
See https://developer.atlassian.com/jiradev/jira-apis/jira-rest-apis/jira-rest-api-tutorials/jira-rest-api-version-2-tutorial and the tutorials/examples beneath it.
From memory, you can do the same as curl with
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(<JIRA base url /rest/api/2/>);
Exactly right, then adding in some auth on top of that
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.