私はグーグルのページスピードを調べていて、試してみることにしました。同じことを学ぶために、いくつかのチュートリアルを行いました。チュートリアルでは、各ルールに関連付けられたscore
パラメーターがあることを示しました。ただし、取得した応答にはruleImpact
、各ルールのパラメーターのみがあり、パラメーターはありませんscore
。
これは私が使用したものです:
そして、これは私が得た応答です(応答全体ではなく、最初の数行のみを表示しています)-
{
"kind": "pagespeedonline#result",
"id": "https://www.google.com/",
"responseCode": 200,
"title": "Google",
"score": 99,
"pageStats": {
"numberResources": 11,
"numberHosts": 4,
"totalRequestBytes": "2159",
"numberStaticResources": 9,
"htmlResponseBytes": "114193",
"imageResponseBytes": "46012",
"javascriptResponseBytes": "857355",
"otherResponseBytes": "210",
"numberJsResources": 5
},
"formattedResults": {
"locale": "en_US",
"ruleResults": {
"AvoidLandingPageRedirects": {
"localizedRuleName": "Avoid landing page redirects",
"ruleImpact": 0.0,
"urlBlocks": [
{
"header": {
"format": "Your page has no redirects. Learn more about avoiding landing page redirects.",
"args": [
{
"type": "HYPERLINK",
"value": "https://developers.google.com/speed/docs/insights/AvoidRedirects"
}
]
}
}
]
},
"EnableGzipCompression": {
"localizedRuleName": "Enable compression",
"ruleImpact": 0.0,
"urlBlocks": [
{
"header": {
"format": "You have compression enabled. Learn more about enabling compression.",
"args": [
{
"type": "HYPERLINK",
"value": "https://developers.google.com/speed/docs/insights/EnableCompression"
}
]
}
}
]
},
私は何か間違ったことをしていますか?