Custom action facebook template error

Till now i’m abke to send custom actions of fb generic template and multimedia template but while trying to send the fb messenger LIST template, this is the error i’m facing.

An exception occurred while handling URI: ‘http://localhost:5055/webhook’ Traceback (most recent call last):

File “/usr/local/lib/python3.7/site-packages/sanic/app.py”, line 942, in handle_request response = await response

File “/usr/local/lib/python3.7/site-packages/rasa_sdk/endpoint.py”, line 86, in webhook result = await executor.run(action_call)

File “/usr/local/lib/python3.7/site-packages/rasa_sdk/executor.py”, line 280, in run events = action(dispatcher, tracker, domain)

File “/Users/actions.py”, line 453, in run "messenger_extensions": true,

NameError: name ‘true’ is not defined

Could you share the contents of your actions.py file?

from typing import Dict, Text, Any, List, Union, Optional

from rasa_sdk import Tracker from rasa_sdk.executor import CollectingDispatcher from rasa_sdk.forms import FormAction from rasa_sdk import Action

class FacebookMessengerList(Action):

def name(self) -> Text:

    return "action_fbmessenger_list"

def run(self,dispatcher,tracker,domain):
    bt = {
                "attachment": {
                  "type": "template",
                  "payload": {
                    "template_type": "list",
                    "top_element_style": "compact",
                    "elements": [
                      {
                        "title": "Classic T-Shirt Collection",
                        "subtitle": "See all our colors",
                        "image_url": "https://i.picsum.photos/id/1000/5626/3635.jpg",          
                        "buttons": [
                          {
                            "title": "View",
                            "type": "web_url",
                            "url": "https://picsum.photos/id/237/200/300",
                            "messenger_extensions": true,
                            "webview_height_ratio": "tall",
                            "fallback_url": "https://picsum.photos/images"            
                          }
                        ]
                      },
                      {
                        "title": "Classic White T-Shirt",
                        "subtitle": "See all our colors",
                        "default_action": {
                          "type": "web_url",
                          "url": "https://picsum.photos/seed/picsum/200/300",
                          "messenger_extensions": false,
                          "webview_height_ratio": "tall"
                        }
                      },
                      {
                        "title": "Classic Blue T-Shirt",
                        "image_url": "https://picsum.photos/200/300.jpg",
                        "subtitle": "100% Cotton, 200% Comfortable",
                        "default_action": {
                          "type": "web_url",
                          "url": "https://i.picsum.photos/id/1005/5760/3840.jpg",
                          "messenger_extensions": true,
                          "webview_height_ratio": "tall",
                          "fallback_url": "https://picsum.photos/images"
                        },
                        "buttons": [
                          {
                            "title": "Shop Now",
                            "type": "web_url",
                            "url": "https://i.picsum.photos/id/1006/3000/2000.jpg",
                            "messenger_extensions": true,
                            "webview_height_ratio": "tall",
                            "fallback_url": "https://picsum.photos/images"            
                          }
                        ]        
                      }
                    ],
                     "buttons": [
                      {
                        "title": "View More",
                        "type": "postback",
                        "payload": "/enquiry"            
                      }
                    ]  
                  }
                }
              }
    dispatcher.utter_custom_json(bt)
    return []

lowercased true/false is interpreted as a variable name in Python. to use a boolean, use True and False

side note: In rasa_sdk 1.6.1 utter_custom_json is deprecated; you should use utter_message(json_message=<message dict>) instead.

I changed boolean forrmat. Not working in rasa 2.8.14. I need help, only works with generic template,