Questions tagged [jira]

Posts labeled with [jira] should pertain to engaging with Jira through programming methods.

Attempting to retrieve a JSON list of issues from JIRA using the jira-connector module in a node.js environment

Currently, I am attempting to connect to JIRA using the jira-connector library in order to retrieve and display data in JSON format. However, when I try to use console.log to view the results, no data is being displayed (as shown in the image provided). c ...

I'm currently working with ReactJS and attempting to retrieve JSON data from a REST API in JIRA, but I'm facing challenges in achieving this

I've been struggling for hours trying to understand why I am unable to access and transfer data in my array from the JSON data in JIRA using the REST API. Basically, I am attempting to retrieve the JSON data from the JIRA website via URL with Basic Authent ...

The countdown feature is failing to update despite using the SetInterval function

My goal is to develop a countdown application using Atlassian Forge that takes a date input and initiates the countdown based on the current date. For instance, if I input "After 3 days from now," I am expecting the result to continuously update every seco ...

Interacting with JIRA using Java for handling requests and responses through its REST

This is my first question on stackoverflow. I am trying to implement a post request (using an inputBean/pojo class for necessary parameters) and receive a response (using an outputBean/pojo class to map the json response) using the Jira REST API. Currently ...

Having difficulty modifying the custom_field in Jira using Python

Encountering issues while trying to update fields for an problem in Jira using Python. Upon examining the JSON raw data, I found that it is located at: {fields:{'customfield_10000':'some text'} Despite attempting various methods like: issue.update(fiel ...

Utilizing Jquery Ajax calls to populate a user list on project selection

I am currently utilizing Jira and in need of populating the list of users for the selected project. <td><select id="projectsList" class="textFld" multiple="multiple"></select></td> <td><select id="userList" class=" ...

PHP Jira OAuth: Error 401 - Unauthorized due to oauth_problem: "signature_invalid"

Currently, I am working on creating tools for logging into Jira using OAuth. For this, I am referring to a sample tutorial available at this link. Upon implementation, the response I receive is as follows: [response] HTTP/1.1 401 Unauthorized Server: Apa ...

Cross-Origin Resource Sharing in AngularJS

While working with Angular JS and HTML, I encountered an issue when trying to make a request to the Jira server. The error message I received was: "XMLHttpRequest cannot load . No 'Access-Control-Allow-Origin' header is present on the requested ...

Executing Java method via JavaScript by simply clicking a button

I am currently facing a challenge in finding a way to invoke a Java method from JavaScript and pass user input variables into the method call. The main issue I have encountered is that JavaScript seems to interpret/resolve the Java method during page load. ...

What is the process for attaching a component to a new Ticket using the Jira Rest API during its initial creation?

Every time I attempt to link a component to a ticket while in the creation stage, it fails to properly assign the component. The ticket ends up being created without the component associated with it. Here is how I tried to do it: "components": [ ...

Obtain the Jira identification number following the successful creation of a new Jira

I was wondering if there is a method to retrieve the issue ID after sending a request for one. Here is the code I am currently using: issue_dict = { 'project': {'id': 123}, 'summary': 'New issue from jira-python', 'description': 'Look into th ...