Skip to content

Instantly share code, notes, and snippets.

View gustiando's full-sized avatar
🏠
Working from home

Gustavo Matias dos Santos gustiando

🏠
Working from home
View GitHub Profile
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
@gustiando
gustiando / jira-api-access-check.sh
Created February 9, 2021 15:34
Jira API Client Access Check
# make sure to replace 'my-host' '[email protected]', 'my-jira-api-token' and 'issue-id' below with valid values
# Access check using curl
curl -v https://my-jira-host.atlassian.net/rest/api/latest/issue/issue-id --user [email protected]:my-jira-api-token
# Access check using node
node -e "const JiraApi = require('jira-client'); new JiraApi({protocol: 'https', host: 'my-jira-host.atlassian.net', username: '[email protected]', password: 'my-jira-api-token', apiVersion: '2', strictSSL: true}).findIssue('issue-id').then((result) => console.log(result));"
# it should result in the issue information
@gustiando
gustiando / test.pdf
Created October 31, 2023 12:35
Test
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.