LINE WORKS Bot에서 회전 목마/이미지 회전 목마 사용
조만간 회전 목마/이미지 회전 목마를 사용하여 메시지를 보내려고합니다.
TITLE : 메시지 보내기
URL : ぇぺぺrs. rks 모비. 이 m/jp/도쿠멘 t/1005008?ぁ g = 그럼
TITLE : 메시지 전송 (Carousel)
URL : ぇぺぺrs. rks 모비. 이 m/jp/도쿠멘 t/100500808?ぁ g = 그럼
TITLE: 메시지 전송(Image Carousel)
URL : ぇぺぺrs. rks 모비. 이 m/jp/도쿠멘 t/100500809?ぁ g = 그럼
회전 목마
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)
활용하십시오!
Reference
이 문제에 관하여(LINE WORKS Bot에서 회전 목마/이미지 회전 목마 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/iwaohig/items/641cbbccc94b853bee51텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)