-
吉拉API的实现为jira-api
资源介绍
用法
创建一个提供您的jira api url , username和password的客户端:
$ client = new IssueClient ( 'https://myproject.atlassian.com/rest/api/latest' , 'login' , 'password' );
现在,您可以使用该客户端运行api请求:
$ issue = json_decode ( $ client -> get ( $ issueId ))-> getBody ()-> getContents ());
并且不要忘了错误处理(有关更多信息,请有关):
try {
$ response = $ client -> getIssue ( $ issueId );
} catch ( RequestException $ e ) {
. . .
}
受支持的客户
问题