File tree Expand file tree Collapse file tree 4 files changed +93
-28
lines changed Expand file tree Collapse file tree 4 files changed +93
-28
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,18 @@ Find the status of an issue.
38
38
39
39
Currently there is no explicit login call necessary as each API call uses Basic Authentication to authenticate.
40
40
41
+ ## Options ##
42
+
43
+ JiraApi options:
44
+ * ` protocol<string> ` : Typically 'http:' or 'https:'
45
+ * ` host<string> ` : The hostname for your jira server
46
+ * ` port<int> ` : The port your jira server is listening on (probably ` 80 ` or ` 443 ` )
47
+ * ` user<string> ` : The username to log in with
48
+ * ` password<string> ` : Keep it secret, keep it safe
49
+ * ` Jira API Version<string> ` : Known to work with ` 2 ` and ` 2.0.alpha1 `
50
+ * ` verbose<bool> ` : Log some info to the console, usually for debugging
51
+ * ` strictSSL<bool> ` : Set to false if you have self-signed certs or something non-trustworthy
52
+
41
53
## Implemented APIs ##
42
54
43
55
* Authentication
@@ -76,6 +88,7 @@ Currently there is no explicit login call necessary as each API call uses Basic
76
88
## Changelog ##
77
89
78
90
91
+ * _ 0.5.0 Last param is now for strict SSL checking, defaults to true_
79
92
* _ 0.4.1 Now handing errors in the request callback (thanks [ mrbrookman] ( https://github.com/mrbrookman ) )_
80
93
* _ 0.4.0 Now auto-redirecting between http and https (for both GET and POST)_
81
94
* _ 0.3.1 [ Request] ( https://github.com/mikeal/request ) is broken, setting max request package at 2.15.0_
You can’t perform that action at this time.
0 commit comments