how to Store and open a video in a Knowledge Article in hrsd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Store and open a video in a Knowledge Article
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Refer Servicenow Documentation:
Embed videos in the HTML editor
Also check:
How to add a video to a Knowledge article
https://servicenowguru.com/knowledge-management/adding-video-knowledge-articles/
https://www.servicenow.com/community/itsm-forum/embed-a-video-in-a-knowledge-article/m-p/624976
Regards
Tanushree Maiti
ServiceNow Technical Architect
LinkedIn: https://www.linkedin.com/in/tanushreemaiti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
This ok but any other way to do it .
all videos store in attachment table so storage issue again . so we dont want .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
If video is stored in other site that URL also you embed in KB article.
Refer:
How to add a Microsoft Stream video to a Knowledge Article
https://www.servicenow.com/community/developer-forum/iframe-with-external-website/m-p/3452749
Regards
Tanushree Maiti
ServiceNow Technical Architect
LinkedIn: https://www.linkedin.com/in/tanushreemaiti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @bhujangi gawal2,
Since this involves security, you need to allow ServiceNow to use external links within an iframe. To achieve this, you must create an HTTP Response Header record and define which external sources are permitted for iframes in the Service Portal.
Here’s how you can do it:
- Navigate to sys_response_header.list and create a new record.
- Configure the necessary fields, such as:
- Application
- Name (e.g., Content-Security-Policy)
- Other required fields (you’ll see them when creating the record).
- In the Value field, add something like:
frame-src 'self' https://teams.microsoft.com
This configuration means only links from your own instance (self) and Teams are trusted and can be used in iframes. Any link not listed here will be blocked.
Important Note:
The external sites you allow (e.g., Teams) must also permit their content to be embedded in iframes. This is not controlled on the ServiceNow side. For example, Teams needs to allow external domains (like your ServiceNow instance) to use their links in iframes. On their side, the configuration is similar but uses frame-ancestor instead of frame-src.
Reference: https://www.servicenow.com/community/developer-forum/iframe-with-external-website/m-p/3452749
Please Accept this response as Solution if it assisted you with your question & Mark this response as Helpful.
Kind Regards,
Ehab Pilloor
