Requirement
Call a static resource in Apex.
JSON
The following static resource is saved with the name jsonsample.
{
"name": "John Doe",
"email": "johndoe@example.com",
"age": 30
}
Skill
StaticResource sr = [select id, body from StaticResource Where Name = 'jsonsample'];
String text = sr.body.toString();
system.debug(text);
Video
Video does not exists.