将Google电子表格连接到Atlassian JIRA [英] Connecting Google spreadsheet to Atlassian JIRA

查看:370
本文介绍了将Google电子表格连接到Atlassian JIRA的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用Google Apps脚本在Google电子表格中显示我的JIRA问题,但首先我需要与JIRA建立连接,因此我通过了

I want to display my JIRA issues in a Google spreadsheet using Google Apps script but first i need to establish a connection with JIRA, so i went through these tutorials only to find out that the opposit is possible (JIRA connects to other applications), therefore i want to ask if there's a way to connect Google Sheets to JIRA and in that case how to get the Authentication Token ?

推荐答案

function requestJIRA_Token() {
  var baseUrl = 'Put Base URL to JIRA here';

  var theUrl = baseUrl + "/plugins/servlet/oauth/request-token";
  var response = UrlFetchApp.fetch(theUrl);

  Logger.log('response: ' + response);
};

JIRA OAUTH

这篇关于将Google电子表格连接到Atlassian JIRA的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆