We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88ae03f commit 8d6ce78Copy full SHA for 8d6ce78
README.md
@@ -111,6 +111,22 @@ const client = new Client({
111
});
112
```
113
114
+### OAuth1.0 authentication
115
+
116
+```js
117
+const client = new Client({
118
+ host: "https://jira.somehost.com",
119
+ authentication: {
120
+ oauth1: {
121
+ consumerKey: "your consumer key",
122
+ consumerSecret: "-----BEGIN RSA PRIVATE KEY-----\n" + "some private key\n" + "-----END RSA PRIVATE KEY-----",
123
+ accessToken: "your access token",
124
+ tokenSecret: "your token secret"
125
+ }
126
127
+});
128
+```
129
130
### OAuth2.0 authentication
131
132
```js
0 commit comments