登录 注册
当前位置:主页 > 资源下载 > 9 > 吉拉API的实现为jira-api

吉拉API的实现为jira-api

  • 更新:2024-08-03 14:04:56
  • 大小:24KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

用法 创建一个提供您的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 ) { . . . } 受支持的客户 问题