Class: Google::Apis::PagespeedonlineV4::PagespeedonlineService
- Inherits:
-
Core::BaseService
- Object
- Core::BaseService
- Google::Apis::PagespeedonlineV4::PagespeedonlineService
- Defined in:
- generated/google/apis/pagespeedonline_v4/service.rb
Overview
PageSpeed Insights API
Analyzes the performance of a web page and provides tailored suggestions to make that page faster.
Instance Attribute Summary collapse
-
#key ⇒ String
API key.
-
#quota_user ⇒ String
Available to use for quota purposes for server-side applications.
-
#user_ip ⇒ String
IP address of the site where the request originates.
Attributes inherited from Core::BaseService
#authorization, #base_path, #batch_path, #client, #client_options, #request_options, #root_url, #upload_path
Instance Method Summary collapse
-
#initialize ⇒ PagespeedonlineService
constructor
A new instance of PagespeedonlineService.
-
#runpagespeed_pagespeedapi(url, filter_third_party_resources: nil, locale: nil, rule: nil, screenshot: nil, snapshots: nil, strategy: nil, utm_campaign: nil, utm_source: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::PagespeedonlineV4::PagespeedApiPagespeedResponseV4
Runs PageSpeed analysis on the page at the specified URL, and returns PageSpeed scores, a list of suggestions to make that page faster, and other information.
Methods inherited from Core::BaseService
#batch, #batch_upload, #fetch_all, #http
Methods included from Core::Logging
Constructor Details
#initialize ⇒ PagespeedonlineService
Returns a new instance of PagespeedonlineService
52 53 54 55 |
# File 'generated/google/apis/pagespeedonline_v4/service.rb', line 52 def initialize super('https://www.googleapis.com/', 'pagespeedonline/v4/') @batch_path = 'batch/pagespeedonline/v4' end |
Instance Attribute Details
#key ⇒ String
Returns API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
39 40 41 |
# File 'generated/google/apis/pagespeedonline_v4/service.rb', line 39 def key @key end |
#quota_user ⇒ String
Returns Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.
45 46 47 |
# File 'generated/google/apis/pagespeedonline_v4/service.rb', line 45 def quota_user @quota_user end |
#user_ip ⇒ String
Returns IP address of the site where the request originates. Use this if you want to enforce per-user limits.
50 51 52 |
# File 'generated/google/apis/pagespeedonline_v4/service.rb', line 50 def user_ip @user_ip end |
Instance Method Details
#runpagespeed_pagespeedapi(url, filter_third_party_resources: nil, locale: nil, rule: nil, screenshot: nil, snapshots: nil, strategy: nil, utm_campaign: nil, utm_source: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::PagespeedonlineV4::PagespeedApiPagespeedResponseV4
Runs PageSpeed analysis on the page at the specified URL, and returns PageSpeed scores, a list of suggestions to make that page faster, and other information.
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'generated/google/apis/pagespeedonline_v4/service.rb', line 100 def runpagespeed_pagespeedapi(url, filter_third_party_resources: nil, locale: nil, rule: nil, screenshot: nil, snapshots: nil, strategy: nil, utm_campaign: nil, utm_source: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block) command = make_simple_command(:get, 'runPagespeed', ) command.response_representation = Google::Apis::PagespeedonlineV4::PagespeedApiPagespeedResponseV4::Representation command.response_class = Google::Apis::PagespeedonlineV4::PagespeedApiPagespeedResponseV4 command.query['filter_third_party_resources'] = filter_third_party_resources unless filter_third_party_resources.nil? command.query['locale'] = locale unless locale.nil? command.query['rule'] = rule unless rule.nil? command.query['screenshot'] = screenshot unless screenshot.nil? command.query['snapshots'] = snapshots unless snapshots.nil? command.query['strategy'] = strategy unless strategy.nil? command.query['url'] = url unless url.nil? command.query['utm_campaign'] = utm_campaign unless utm_campaign.nil? command.query['utm_source'] = utm_source unless utm_source.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? command.query['userIp'] = user_ip unless user_ip.nil? execute_or_queue_command(command, &block) end |