[LINE] 기본 액션과 멀티 액션을 시도했습니다.
5682 단어 LINEmessagingAPILine
전제
Push Message API
HTTP 요청
HTTP 요청
요청 헤더
설명
속성
유형
필수
설명
defaultAction
액션 객체
선택
이미지, 제목 및 텍스트의 전체 영역에 대해 설정할 수 있는 탭할 때 동작
샘플
curl
curl -X POST -H 'Content-Type:application/json' -H 'Authorization: Bearer {トークン}' -d '{
"messages": [
{
"altText": "かご落ち商品",
"template": {
"columns": [
{
"actions": [
{
"label": "詳細はこちら▶︎",
"type": "uri",
"uri": "https://google.com"
}
],
"defaultAction": {
"type": "uri",
"label": "defaultAction",
"uri": "http://yahoo.co.jp"
},
"text": "¥1000",
"thumbnailImageUrl": "http://sample.com",
"title": "サンプルタイトル"
}
],
"type": "carousel"
},
"type": "template"
}
],
"to": "{LINEUserID}"
}' \https://api.line.me/v2/bot/message/push
이미지 이미지
defaultAction을 클릭하면 Yahoo! 페이지로 전환
일반 Action을 클릭하면 Google 페이지로 전환
멀티 액션 정보
설명
속성
유형
필수
설명
액션
액션 객체의 배열
선택
탭했을 때의 액션 최대 건수: 3
샘플
curl -X POST -H 'Content-Type:application/json' -H 'Authorization: Bearer {トークン}' -d '{
"messages": [
{
"type":"text",
"text":"★カートに商品が残っています★\nお買い忘れはございませんか?"
},
{
"altText": "かご落ち商品",
"template": {
"columns": [
{
"actions": [
{
"type": "uri",
"label": "商品詳細はこちら▶︎",
"uri": "https://www.sample.com"
},
{
"type":"uri",
"label":"TOPはこちら▶︎",
"uri":"https://www.sample.com"
}
],
"text": "¥886",
"thumbnailImageUrl": "https://www.sample.com",
"title": "マルチビタミン"
},
{
"actions": [
{
"type": "uri",
"label": "詳細はこちら2▶︎",
"uri": "https://www.sample.com"
},
{
"type":"uri",
"label":"Buy2",
"uri":"https://www.sample.com"
}
],
"text": "ビタミンサンプル",
"thumbnailImageUrl": "https://www.sample.com",
"title": "マルチビタミン"
}
],
"type": "carousel"
},
"type": "template"
}
],
"to": "{LINEUserID}"
}' \https://api.line.me/v2/bot/message/push
이미지 이미지
Reference
이 문제에 관하여([LINE] 기본 액션과 멀티 액션을 시도했습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/b1008240/items/4400a86a7ee1ad08ad3a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)