HTML5 application Security Questions [closed]
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this questionAm new to HTML/JavaScripting. Interested in seeking answers to the following questions.
- HtmL5 apps - how security is contr开发者_StackOverflow社区olled ? (Permissions / Capabilities) . JavaScript security. How does platform level(say some mobile platform) security map to JavaScript security. If I wanted to use these HTML apps in the handset, will the security be taken care by the mobile framework?
- How do third part developers request for such capabilities (such as deleting a contact or file from HTML5/Java Script).
HTML5 brings nothing fundamentally new in terms of security. Your scripts will run in a sandbox and not have access to any other APIs than those exposed by the platform they are running on. You will learn about those APIs in the documentation of your chosen platform. For instance, Symbian web apps expose certain APIs that allow developers to get some information about the system. You do not "request" for such capability, you simply use it. Other platforms may impose additional requirements.
精彩评论