51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
name are silently ignored. Furthermore, query parameters are only
decoded if the HTTP request uses the same origin as the application,
or if the "wapp-allow-xorigin-params" has been run to signal Wapp
that cross-origin query parameters are allowed.
4. **POST Parameters**
POST parameters are the application/x-www-form-urlencoded key/value
pairs in the content of a POST request they typically originate from
forms. POST parameters are treated exactly like query parameters in
that they are decoded to form new Wapp parameters as long as they
have all lower-case keys and as long as either the HTTP request comes
from the same origin or the "wapp-allow-xorigin-params" command has
been run.
All Wapp parameters are held in a single namespace. There is no way to
|
|
|
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
name are silently ignored. Furthermore, query parameters are only
decoded if the HTTP request uses the same origin as the application,
or if the "wapp-allow-xorigin-params" has been run to signal Wapp
that cross-origin query parameters are allowed.
4. **POST Parameters**
POST parameters are the application/x-www-form-urlencoded key/value
pairs in the content of a POST request that typically originate from
forms. POST parameters are treated exactly like query parameters in
that they are decoded to form new Wapp parameters as long as they
have all lower-case keys and as long as either the HTTP request comes
from the same origin or the "wapp-allow-xorigin-params" command has
been run.
All Wapp parameters are held in a single namespace. There is no way to
|