fix(serverless): curl -u syntax

pull/6194/head
Jason Stirnaman 2025-07-08 00:03:18 -05:00
parent 08ce060be9
commit 538f9e1a02
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ The following example shows how to use cURL with the `Basic` authentication sche
#######################################
curl "https://{{< influxdb/host >}}/query" \
--user "":"API_TOKEN" \
--user ":API_TOKEN" \
--data-urlencode "db=DATABASE_NAME" \
--data-urlencode "rp=RETENTION_POLICY" \
--data-urlencode "q=SELECT * FROM MEASUREMENT"