0

m.me リンクを使用してパラメーターを渡そうとしましたが、アプリのテスター/開発者アカウントがこの機能を試したときに、Webhook がイベントを受け取りませんでした。私のボットには既に開始ボタンがあり、ページは公開されています。

私が尋ねようとしているのは、なぜイベントを取得できなかったのか、この問題を解決する方法は?

let message = {
                "attachment": {
                  "type": "template",
                  "payload": {
                    "template_type": "generic",
                    "elements": [
                      {
                        "title": "Share me ",
                        "subtitle": "share to your friend",
                        "image_url": "https://gallery.yopriceville.com/var/resizes/Free-Clipart-Pictures/Sun-and-Moon-PNG/Transparent_Sun_with_Shades_PNG_Clipart_Picture.png?m=1434276589",
                        "buttons": [
                          {
                            "type": "element_share",
                            "share_contents": {
                              "attachment": {
                                "type": "template",
                                "payload": {
                                  "template_type": "generic",
                                  "elements": [
                                    {
                                      "title": "Add to connect to your friend",
                                      "subtitle": "connect",
                                      "image_url": output.profile_pic,
                                      "default_action": {
                                        "type": "web_url",
                                        "url": `http://m.me/${page_id}?ref=invited_by_${recipientId}`
                                      },
                                      "buttons": [
                                        {
                                          "type": "web_url",
                                          "url": `http://m.me/${page_id}?ref=invited_by_${recipientId}`,
                                          "title": `ADD ${output.first_name}`
                                        }
                                      ]
                                    }
                                  ]
                                }
                              }
                            }
                          }
                        ]
                      }
                    ]
                  }
                }
              };
4

0 に答える 0