You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of March 15, 2018, in accordance to the [Atlassian REST API Policy](https://developer.atlassian.com/platform/marketplace/atlassian-rest-api-policy/), Basic auth with password to be deprecated.
68
69
Instead of password, you should using [API token](https://confluence.atlassian.com/cloud/api-tokens-938839638.html).
69
70
70
-
**important-note:** If you are using previous versions(a prior v1.2), you should move config.jira.json to .env and will edit it.
71
-
71
+
**Laravel Users:**
72
72
If you are developing with laravel framework(5.x), you must append above configuration to your application .env file.
73
73
74
74
## use array
@@ -84,11 +84,9 @@ $iss = new IssueService(new ArrayConfiguration(
84
84
'jiraHost' => 'https://your-jira.host.com',
85
85
// for basic authorization:
86
86
'jiraUser' => 'jira-username',
87
-
'jiraPassword' => 'jira-password',
87
+
'jiraPassword' => 'jira-password-OR-api-token',
88
88
// to enable session cookie authorization (with basic authorization only)
89
89
'cookieAuthEnabled' => true,
90
-
// for OAuth authorization:
91
-
'oauthAccessToken' => 'access-token',
92
90
)
93
91
));
94
92
```
@@ -117,6 +115,8 @@ $iss = new IssueService(new ArrayConfiguration(
117
115
-[Change assignee](#change-assignee)
118
116
-[Remove issue](#remove-issue)
119
117
-[Add comment](#add-comment)
118
+
-[Get comment](#get-comment)
119
+
-[Delete comment](#delete-comment)
120
120
-[Perform a transition on an issue](#perform-a-transition-on-an-issue)
121
121
-[Perform an advanced search, using the JQL](#perform-an-advanced-search)
122
122
-[Simple JQL](#simple-query)
@@ -711,6 +711,60 @@ COMMENT;
711
711
712
712
```
713
713
714
+
#### Get comment
715
+
716
+
[See Jira API reference](https://docs.atlassian.com/software/jira/docs/api/REST/7.6.1/#api/2/issue-getComments)
0 commit comments