telegram_send_with_buttons
Send Telegram messages with interactive inline buttons for user actions like opening URLs or triggering callback functions.
Instructions
URL 링크 또는 콜백 버튼이 붙은 텔레그램 메시지를 전송합니다.
버튼 예시 (buttons 파라미터): [[{"text": "공식 사이트", "url": "https://example.com"}], [{"text": "확인", "callback_data": "ok"}, {"text": "취소", "callback_data": "cancel"}]]
Args: params (SendInlineKeyboardInput): - chat_id (int): 채팅 ID - text (str): 메시지 내용 - buttons (list[list[dict]]): 버튼 2차원 배열 - parse_mode (str): 'Markdown' 또는 'HTML' (기본값: Markdown)
Returns: str: 전송 성공 메시지 또는 에러
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |