How it Works
If you're curious in the technical details of how the API functions, here's a brief diagram:
User-written scripts ===> API Server ===> Campaign Sandbox <===> Real-Time Sync Server
The Roll20 API Server listens for activity on your campaign. When it detects that people are using your campaign, it spins up a sandbox for your campaign and loads any Mod (API) scripts that you have written into the sandbox. The sandbox can receive and send data directly to the real-time sync server, which allows it to respond to events and make changes to the game.
Restrictions from Normal Javascript
While Roll20 scripts are Javascript, there are some restrictions you should be aware of if you're used to programming Javascript for websites. Roll20 scripts are executed in a separate sandbox from the Roll20 site. This provides an additional layer of separation and security for our system and your players. This sandbox means that:
- You cannot make HTTP Requests (AJAX).
- You cannot load external scripts or libraries (e.g. jQuery).
- The environment is Javascript, but it is not an environment in a browser, so there is no DOM, page elements, CSS,
document
,window
, etc.