Missions Serverless 101 Task1

Hey. I was trying to make the Task 1 from the Missions -> Serverless 101. I opened index.html and discovered an error, after exploring the thing it turned out this line
<script src="//api.backendless.com/sdk/js/latest/backendless.min.js"></script>
doesn’t allow to open backendless.min.js as a file and get it work. So, I’ve changed it into
<script src="https://api.backendless.com/sdk/js/latest/backendless.min.js"></script>
May be it’s cause I don’t have some network services or whatever, but it is what it is. Let me know if there’s something missing in my configuration so all future samples work.
Thanks.

Hi @Yuliya_Lapteva,

which browser do you use?

Stanislaw

Opera, but also check in Chrome.

Thanks for the info.
A relative URL without a scheme (http: or https:) is valid, per RFC 3986: “Uniform Resource Identifier (URI): Generic Syntax”, Section 4.2.
But some old browsers may not support it, as well as Chrome if you’re using old OS… that would explain why Chrome fails to load script also.
Do you use Windows XP?

No, Windows 10, update regularly

Version:67.0.3575.137 - Opera

Version 81.0.4044.129 (Official Build) (64-bit) - Chrome

Ok, thanks once again for detailed information. We will investigate this issue. Hope it does not block you currently, as you already find out how to fix it manually.

Regards,
Stanislaw

1 Like