Google PageSpeed API dotnet .net
问题 I have set up a basic C# application to run a PageSpeed test on a website that I specify using the Google.Apis.Pagespeedonline.v2 nuget package. The set up is simple enough and I have a variable that I can specify the url which is then past in to the Service // Create the service. var service = new PagespeedonlineService(new BaseClientService.Initializer { ApplicationName = "PageSpeed Sample", ApiKey = "[API_KEY_HERE]" }); var url = "URL_TO_TEST"; // Run the request. var result = await