我向 CrUX Report API 查询,如开发文档所示。
而不是origin
我url
用来获取某些 URL 的数据,所以我的查询看起来像:
curl https://chromeuxreport.googleapis.com/v1/records:queryRecord?key=API_KEY \
--header 'Content-Type: application/json' --data '{"url":"https://www.spiegel.de/schlagzeilen/"}'
我对不同的网址一一进行。
我的问题:响应以不同的顺序出现:第一个查询CLS
作为第一个指标,第二个查询 -FID
依此类推。
此问题不取决于我运行查询的类型:终端中的 cURL、邮递员或 Google 表格中的 Google App 脚本。
我试图在请求中设置一个明确的指标顺序,比如
curl https://chromeuxreport.googleapis.com/v1/records:queryRecord?key=API_KEY \
--header 'Content-Type: application/json' --data '{"url":"https://www.spiegel.de/schlagzeilen/","metrics":["cumulative_layout_shift","first_contentful_paint","first_input_delay","largest_contentful_paint"]}'
但响应仍然以随机顺序出现。
问:是否有可能在我希望的响应中强制执行指标顺序?