How to connect to mysql from nodejs, with ES6 promise
Introduction I had to develop a small automation to query some old mysql data…
November 10, 2017
This article shows some of common usages of JIRA rest apis.
Note: This article assumes you have a username and password for calling rest api of JIRA.
There is an API: createmeta, which gives you every possible field require to create JIRA issues.
Note: This API is pretty expensive in terms of data. It can give you complete data for all the projects. But, you might be interested in one or two projects.
curl -u "username:password" "https://jira_url/rest/api/2/issue/createmeta?projectKeys=XYZ"
Above api call will give you very limited result, which has only the issue types, and no expanded fields. But, we are interested in getting data of a custom field.
curl -u "username:password" "https://jira_url/rest/api/2/issue/createmeta?projectKeys=XYZ&expand=projects.issuetypes.fields"
Now, you are telling JIRA to return expanded fields, and now you will get values of all custom fields that appear while creating a JIRA issue in your project XYZ, and for each issuetype.
Introduction I had to develop a small automation to query some old mysql data…
See the code below: The output will be 4 columns separated by comma. You can…
Introduction Javascript is not a strict type language. We can use a variable to…
The problem comes while using FTPS. When developer uses login method of this…
Youtube APIs are great way to fetch details about video or channels. I’ve…
Many times, while administering your drupal website, you must have encountered…
Introduction This post has the complete code to send email through smtp server…
Introduction In a normal email sending code from python, I’m getting following…
Introduction In one of my app, I was using to talk to . I have used some event…
Introduction So you have a Django project, and want to run it using docker image…
Introduction It is very important to introduce few process so that your code and…
Introduction In this post, we will see a sample Jenkin Pipeline Groovy script…