req.url.qs
STRING, read-only.
Available inall subroutines.
The query string portion of req.url
. This will be
from immediately after the ?
to the end of the URL.
Example
In the request www.example.com/index.html?a=1&b=2
, req.url.qs
will contain
a=1&b=2
.
Try it out
req.url.qs
is used in the following code examples. Examples apply VCL to real-world use cases and can be deployed as they are, or adapted for your own service. See the full list of code examples for more inspiration.
Click RUN on a sample below to provision a Fastly service, execute the code on Fastly, and see how the function behaves.
Capture and aggregate log data from client devices
Collect and aggregate log data submitted from browsers directly into S3 or another log store without having to handle the traffic at your origin.
User contributed notes
BETADo you see an error in this page? Do have an interesting use case, example or edge case people should know about? Share your knowledge and help people who are reading this page! (Comments are moderated; for support, please contact support@fastly.com)