0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

RaspberryPIでSlack APIを利用して通知アプリを作成#1(SlackのAPI登録編)

Last updated at Posted at 2020-06-09

今日のゴール

Slackのアカウント登録及びAPI関連設定を行う。
最後はSlackチャネルの一覧を取得するサンプルを実行します。

事前準備

①SlackのアカウントとWork spaceを作成します。
②Appを作成とScopeを指定します。

①SlackのアカウントとWork spaceを作成します。

下記の情報を入力します。

image.png

登録したEmailを確認し、その情報を入力します。

image.png
image.png
image.png
image.png
image.png
※これでWorkSpaceの作成が完了しました。

②Appを作成とScopeを指定します

Slackアカウントを作成し、下記のアドレスにアクセスします。

[Create an App]ボタンを押下します。

image.png

下記の情報を入力します。

image.png

APPの作成できました。下記のOff→ONにする必要があります。

image.png

下記のWebhooksをONにします。他のところも必要に応じてOnにします。

image.png

Basic information画面に戻ります。

image.png

自分のWorkspaceにAppをインストールします。

image.png

チャネルを選択し、Allowボタンを押下します。

image.png

Basic information画面に戻ります。次は「Manage distribution」を設定します。

image.png

「Set Up Redirect URLs」ボタンを押下します。

image.png

「Add New Redirect URL」ボタンでURLを追加し、「Save URLs」ボタンを押下します。

image.png

apiを使うため、下記の画面でScopeを指定します。

次のURLはScopeの一覧です。沢山ありますが、これは次回に追加しながら確認します。
https://api.slack.com/scopes
Bot Token;これはSlackのBotから実行されるScope指定です。
User Token:これはAppの管理者のアカウントで実行されるScopeです。
image.png

Slackアプリの機能と権限は、名前付きスコープとそれらがサポートするトークンによって管理されます。

image.png

③Appで使えるScopeを追加します。

次のScopeを追加します。「Add an OAuth Scope」ボタンを押下して下記のScope名を入力します。
image.png

★Scopeを追加した後は、「Reinstall App」ボタンでAPPに再インストールします。★

image.png

チャネルを選択し、「Allow」ボタンを押下します。

image.png

Manage distributionが終わってないので、下記のボタンを押下します。

image.png

下記のチェックを入れます。そして「Update Redirect URIs」ボタンを押下します。

image.png

サンプルを実行

次の画面でbotのTokenを確認します。

image.png

下記のサンプルコードに上記のBotのTokenを設定し、実行します。

現在のチャネル一覧が表示されます。

import requests
import json

url = "https://slack.com/api/channels.list"
token = "token key"

def main():
    userlist = {}
    payload = {"token":token }
    response = requests.get(url,params=payload)
    user_json = response.json()
    for i in user_json["channels"]:
        userlist[i["id"]] = i["name"]
        print("id=" + i["id"] + " name=" + i["name"])

if __name__ == '__main__':
    main()

実行結果

pi@raspberry:~ $ python ch.list.py
id=C014JP6MNPR name=welcome
id=C014JP8GC3Z name=team
id=C015PAVGRT2 name=project
pi@raspberry:~ $

終わりに

SlackのAPIを試すため、このような手順を行わないとできないのが大変ですね。
私の手順も間違えている可能性もあるかもしれないですが、
一応Slackのチャネル一覧を取得することはできました。
Qiitaに残すために0からアカウントを作成し、手順を作成しましたので、
興味ある方はこの手順通りに実施して問題があれば教えていただけますでしょうか。
よろしくお願いいたします。

0
2
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
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?