GitHub user dosubot[bot] added a comment to the discussion: Insert an image from google drive
<!-- Greeting --> Hi @mesut-yasar! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the superset team. <!-- Answer --> To display an image from Google Drive in your Superset dashboard, make sure your Superset configuration allows images from Google Drive by updating the `TALISMAN_CONFIG` in your `superset_config.py`: ```python TALISMAN_CONFIG = { "content_security_policy": { "img-src": [ "'self'", "blob:", "data:", "https://drive.google.com/", ], } } ``` After making this change, restart Superset for it to take effect. Also, ensure your Google Drive image link is set to "Anyone with the link can view" and uses a direct image URL, not just a file view link. If the image still shows as a broken link, check your browser console for Content Security Policy (CSP) errors—they can help pinpoint if the domain is still being blocked by your current config [[source]](https://github.com/apache/superset/issues/33207#issuecomment-2821248820). <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/23e57977-b8c9-47b9-b04e-1b317ca2d3b0?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/23e57977-b8c9-47b9-b04e-1b317ca2d3b0?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/23e57977-b8c9-47b9-b04e-1b317ca2d3b0?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/23e57977-b8c9-47b9-b04e-1b317ca2d3b0?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/23e57977-b8c9-47b9-b04e-1b317ca2d3b0?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/23e57977-b8c9-47b9-b04e-1b317ca2d3b0?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/23e57977-b8c9-47b9-b04e-1b317ca2d3b0?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=github)& nbsp;[](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/discussions/36220) GitHub link: https://github.com/apache/superset/discussions/36220#discussioncomment-15035306 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
