Hi, I'm Samina 👋

This is my Life & Technological Journey

Samina Website

Hi, I'm Samina 👋

This is my Life & Technological Journey

申請 GitHub OAuth 權限紀錄

2 minutes
October 11, 2018

前言

會來使用 GitHub 的 OAuth 是因為發現 TGmeetupBot 在開 issue 的時候,總是會開到重複的 Event Issue。
在經過一番的拆解後,發現雖然都是使用 Basic authentication ,用 Postman 是可以看到所有的 Issue ,但是用程式卻是只能看到最新的 30 筆 issue。
所以就需要 query 更多的 GitHub API 來比對沒撈到的 issue 用搜尋的方式確保不會開到重複的 Issue。
但卻碰上 Rate limiting 的問題了。
因為每小時只能有 60 個請求,但現在卻超過了。
所以就要來用 OAuth 了。

以下是參考 Authorizing OAuth Apps 申請 OAuth 的紀錄。(讓自己下次在申請 OAuth 時,可以翻閱這個筆記,快速記得。)

1. 申請 OAuth2 認證

https://github.com/settings/applications/new 註冊成為 OAuth 使用者。

範例圖

2. 取得 Client ID 和 Client Secret

完成步驟一後,會獲得 ID 和 secret 的值。

3. 在本機端啟動 SimpleHTTPServer

在拿 access token 之前,我們先來在本機端開個 8000 port。

4. 取得 access token

於瀏覽器的網址列中輸入以下連結,並將 client_id 等於後的值填上 Client ID 的 key 值

https://github.com/login/oauth/authorize?client_id=ce16xxxxxxxxxxxxx

5. 同意該 OAuth 使用者可以使用你的帳號

接著會跳出網頁請你點選確認選項,請點選 “Authorize GitHub_user”。

6. 轉導向到自己本機的 8000 port 並取得 access token

如圖: 8939…..

7. 來拿 access token

以下提供兩種方法來取得 refresh token。
方法1: 使用 terminal 或是程式撰寫來取得
方法2: 使用 Postman 來取得

方法 1: terminal 或是程式撰寫

此方法僅用描述的方式,以下為一些注意項目

  1. 使用 POST 的方法取得
  2. Header encoded 方法使用 application/x-www-form-urlencoded
  3. URL 為 https://github.com/login/oauth/access_token
  4. body 中的 request key 與 value 如下
client_id=CLIENT_ID
&client_secret=CLIENT_SECRET
&code=CODE_YOU_RECEIVED_FROM_THE_AUTHORIZATION_RESPONSE

方法 2: 使用 Postman

Postman 是一個 API 的測試工具,您也可以使用其他類似的工具進行,以下為 Postman 的示範

  1. 開起 Postman
  2. 在右上選擇 POST 方法
  3. 在 Enter request URL 輸入 https://github.com/login/oauth/access_token
  4. 點選 Body
  5. 點選 application/x-www-form-urlencoded
  6. 輸入 key 和 value
Key Value
client_id 在 GitHub OAuth 中拿到 client id 的 key 值
client_secret 在 GitHub OAuth 中拿到的 secret 值
code 在上一步驟獲得的 code 值
  1. 點選 Send 取得 access token