[LINE] 기본 액션과 멀티 액션을 시도했습니다.

5682 단어 LINEmessagingAPILine

전제





Push Message API



HTTP 요청


  • POST htps : // 아피. 네. 메/v2/보트/메사게/푸 sh

  • 요청 헤더


  • Content-Type application/json
  • Authorization Bearer {channel access token}

  • 설명




    속성
    유형
    필수
    설명


    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개까지)
  • 회전 목마에서 여러 번 배달하는 경우 다른 작업 수로 배달 할 수 없습니다



  • 속성
    유형
    필수
    설명


    액션
    액션 객체의 배열
    선택
    탭했을 때의 액션 최대 건수: 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
    

    이미지 이미지



    좋은 웹페이지 즐겨찾기