method |
post get |
Sets how to send the data to the server. Default method is get. When method=”get”, the data is sent as a request with?data appended to the URL. The disadvantage of get is that it can be used only for a limited amount of data; if you send sensitive information it will be displayed on the screen and saved in the web server's logs.With method=”post”, the data is sent as a request with the data sent in the body of the request. This method has no limit, and sensitive information is not visible. |
SUPPORTED |
sendreferer |
true false |
If set to true, the browser sends the URL of the current deck with the request, which allow servers to perform simple access control on decks, based on which decks are linking to them. Default is “false” |
SUPPORTED |