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
カルーセル
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)
画像カルーセル
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)
活用してください !