1
0

More than 1 year has passed since last update.

#Github #API で特定レポジトリの Issues の一覧を得る。Webブラウザからもアクセス可能で認証必要なし。

Last updated at Posted at 2019-02-17

URL

こんなん

ブラウザからアクセス可能

image

Script

特に意味はないけどpythonで
curl叩くのと変わらない

import requests, os

owner = os.environ.get('OWNER')
repository = os.environ.get('REPOSITORY')
url = 'https://api.github.com/repos/' + owner + '/' + repository + '/issues'

print(url)
res = requests.get(url)

print(res.json())

Original by Github issue

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

Twitter

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0