Add Inline Keyboard with expression mode

Hi there! It’s understandable how to set a keyboard in fixed mode, but how can I set an inline keyboard in expression mode?

I tried put the code

{

  "inlineKeyboard": {

    "rows": [

      {

        "row": {

          "buttons": [

            {

              "text": "Text one",

              "additionalFields": {

                "callback_data": "callback_one"

              }

            },

            {

              "text": "Text two",

              "additionalFields": {

                "callback_data": "callback_two"

              }

            }

          ]

        }

      },

      {

        "row": {

          "buttons": [

            {

              "text": "Text three",

              "additionalFields": {

                "callback_data": "callback_three"

              }

            },

            {

              "text": "Text four",

              "additionalFields": {

                "callback_data": "callback_four"

              }

            }

          ]

        }

      }

    ]

  }

}

into input of Reply Markup, but doesn’t happen.

hello @pavelaof

Use HTTP node instead. Telegram node doesn’t support dynamic properties.

Example:

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.