7
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 5 years have passed since last update.

LINE WORKS Bot でカルーセル / 画像カルーセルを使う

Posted at

LINE WORKS のトーク Bot API がアップデートされ、カルーセルなどが利用できるようになりました。

早速、カルーセル / 画像カルーセルを使ったメッセージ送信を試してみます。

TITLE: メッセージ送信
URL: https://developers.worksmobile.com/jp/document/1005008?lang=ja

TITLE: メッセージ送信(Carousel)
URL: https://developers.worksmobile.com/jp/document/100500808?lang=ja

TITLE: メッセージ送信(Image Carousel)
URL: https://developers.worksmobile.com/jp/document/100500809?lang=ja

カルーセル

image.png

import json, requests
url = 'https://apis.worksmobile.com/r/<API ID>/message/v1/bot/<Bot No.>/message/push'
headers = {
    'Content-Type': 'application/json; charset=UTF-8',
    'consumerKey': '<Server API Consumer Key>',
    'Authorization': 'Bearer <Token>'
}
payload = {

  "accountId": "user@example",
  "content": {
    "type": "carousel",
    "columns": [{
      "thumbnailImageUrl": "https://example.com/image1.png",
      "title": "タイトル",
      "text": "サンプル テキスト",
      "actions": [
      {
        "type":"uri",
        "label":"アクション 1",
        "uri":"https://example.com"
      },
      {
        "type":"uri",
        "label":"アクション 2",
        "uri":"https://example.net"
      },
      {
        "type":"uri",
        "label":"アクション 3",
        "uri":"https://example.org"
      }
     ]
    }, {
      "thumbnailImageUrl": "http://example.com/image2.png",
      "title": "タイトル",
      "text": "サンプル テキスト",
      "actions": [
      {
        "type":"uri",
        "label":"アクション 1",
        "uri":"https://example.com"
      },
      {
        "type":"uri",
        "label":"アクション 2",
        "uri":"https://example.net"
      },
      {
        "type":"uri",
        "label":"アクション 3",
        "uri":"https://example.org"
      }
      ]
    }]
  }
}

r = requests.post(url, data=json.dumps(payload), headers=headers)

画像カルーセル

image.png

import json, requests
url = 'https://apis.worksmobile.com/r/<API ID>/message/v1/bot/<Bot No.>/message/push'
headers = {
    'Content-Type': 'application/json; charset=UTF-8',
    'consumerKey': '<Server API Consumer Key>',
    'Authorization': 'Bearer <Token>'
}
payload = {

  "accountId": "user@example",
  "content": {
      "type":"image_carousel",
      "columns":[  
         {  
            "imageUrl":"https://example.com/image1.png",
            "action":{  
               "type":"uri",
               "label":"ラベル サンプル",
               "uri":"https://example.com"
            }
         },
         {  
            "imageUrl":"https://example/image2.png",
            "action":{  
               "type":"uri",
               "label":"ラベル サンプル",
               "uri":"https://example.net"
            }
          }

      ]
   }
}

r = requests.post(url, data=json.dumps(payload), headers=headers)

活用してください !

7
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
7
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?