Я новичок в django ckeditor плагин embed не смог получить заданный url

это мой кофигс ккедитор

CKEDITOR_CONFIGS = { 'special': { 'toolbar': 'Special', 'width': 'auto', 'toolbar_Special': [ ["Формат", "Полужирный", "Курсив", "Подчеркивание", "Зачеркивание", "Проверка орфографии"], ['NumberedList', 'BulletedList', 'Indent', 'Outdent', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'], ["Image", "Table", "Link", "Unlink", "Anchor", "SectionLink", "Embed"], ['Undo', 'Redo'], ["CodeSnippet"], ["Maximize"] ],

    # Remove these dialog tabs (semicolon separated dialog:tab)
    'removeDialogTabs': ';'.join([
        'image:advanced',
        'image:Link',
        'link:upload',
        'table:advanced',
        #'tableProperties:advanced',
        ]),
    
    # Extra plugins to be used in the editor
    'extraPlugins': ','.join([
        'mathjax',  # Used to render mathematical formulae
        'codesnippet',  # Used to add code snippets
        'image2',  # Loads new and better image dialog
        'embed',  # Used for embedding media (YouTube/Slideshare etc)
        'tableresize',  # Used to allow resizing of columns in tables
    ]),
}

}

сообщение об ошибке

есть ли что-то, что я упустил

Вернуться на верх