1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-03-29 21:47:06 +02:00

Fix #56: Add note about OAuth auth to README

This commit is contained in:
Andy Grunwald 2017-06-15 19:11:35 +02:00
parent 30841416a8
commit d76c7f9a52

View File

@ -101,7 +101,6 @@ func main() {
}
```
#### Authenticate with session cookie
Here is an example with a session cookie authentification.
@ -135,6 +134,12 @@ func main() {
}
```
#### Authenticate with OAuth
If you want to connect via OAuth to your JIRA Cloud instance checkout the [example of using OAuth authentication with JIRA in Go](https://gist.github.com/Lupus/edafe9a7c5c6b13407293d795442fe67) by [@Lupus](https://github.com/Lupus).
For more details have a look at the issue https://github.com/andygrunwald/go-jira/issues/56.
### Create an issue
Example how to create an issue.