Hi, I'm Samina 👋

This is my Life & Technological Journey

Samina Website

Hi, I'm Samina 👋

This is my Life & Technological Journey

[TGmeetup] 之詳細安裝操作步驟

2 minutes
January 28, 2018
Category:

此篇文章內容同步於 https://hackmd.io/s/ByrxYmi4G

安裝流程

安裝說明

請依據以下安裝說明進行,謝謝。

Step 1. 申請 meetup_api 的 auth Key

以下操作步驟皆是參考官方的說明文件來進行,並提供簡單的取得方法。

1. 申請 OAuth2 認證

2. 取得 Key 和 secret

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

3. 在本機端啟動 SimpleHTTPServer

4. 取得 access token

https://secure.meetup.com/oauth2/authorize
    ?client_id=YOUR_CONSUMER_KEY
    &response_type=code
    &redirect_uri=http://localhost:8000/
https://secure.meetup.com/oauth2/authorize
    ?client_id=7rt32r...........
    &response_type=code
    &redirect_uri=http://localhost:8000/

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

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

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

7. 準備取得 refresh token

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

方法 1: terminal 或是程式撰寫

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

  1. 使用 POST 的方法取得
  2. Header encoded 方法使用 application/x-www-form-urlencoded
  3. URL 為 https://secure.meetup.com/oauth2/access
  4. body 中的 request key 與 value 如下
client_id=YOUR_CONSUMER_KEY
&client_secret=YOUR_CONSUMER_SECRET
&grant_type=authorization_code
&redirect_uri=SAME_REDIRECT_URI_USED_FOR_PREVIOUS_STEP
&code=CODE_YOU_RECEIVED_FROM_THE_AUTHORIZATION_RESPONSE

方法 2: 使用 Postman

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

  1. 開起 Postman
  2. 在右上選擇 POST 方法
  3. 在 Enter request URL 輸入 https://secure.meetup.com/oauth2/access
  4. 點選 Body
  5. 點選 application/x-www-form-urlencoded
  6. 輸入 key 和 value
Key Value
client_id 您在 Meetup OAuth 中拿到的 key 值
client_secret 您在 Meetup OAuth 中拿到的 secret 值
grant_type authorization_code
redirect_uri http://localhost:8000/
code 為您在上一步驟獲得的 code 值
  1. 點選 Send

8. 取得 refresh token 與 access token

refresh token: 因為 access token 有時限性,所以當超過時限時,皆需要使用 refresh token 重新拿 access token。

{
    "access_token": "5b99e.........................a1c56",
    "refresh_token": "461cb.....................0b1e0",
    "token_type": "bearer",
    "expires_in": 3600
}

以上第一階段取得 Meetup OAuth 的 key 就完成囉!

Step 2. 下載專案並編輯 API.cfg 檔

  1. git clone 整個專案
$ git clone https://github.com/TGmeetup/TGmeetup.git
  1. 切換到 TGmeetup 的資料夾
$ cd TGmeetup
  1. 複製 API.cfg.sample 檔案到 API.cfg
$ cp API.cfg.sample API.cfg
  1. 編輯 API.cfg
[MEETUP_API]
API_URL = https://api.meetup.com/
API_KEY = 7rt32........
client_secret = apafji................68hso
refresh_token = edb54a1f5d...............eb92

Step 3. 進行安裝

$ sh install.sh

完成以上就可以開始來使用 tgmeetup 的指令囉! 想知道更多,請到 https://github.com/TGmeetup/TGmeetup 。:)

相關系列文:

[TGmeetup] 就讓這專案蒐集世界各地的技術社群資訊吧!