Class: Google::Apis::PagespeedonlineV4::PagespeedonlineService

Inherits:
Core::BaseService show all
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.

Examples:

require 'google/apis/pagespeedonline_v4'

Pagespeedonline = Google::Apis::PagespeedonlineV4 # Alias the module
service = Pagespeedonline::PagespeedonlineService.new

See Also:

Instance Attribute Summary collapse

Attributes inherited from Core::BaseService

#authorization, #base_path, #batch_path, #client, #client_options, #request_options, #root_url, #upload_path

Instance Method Summary collapse

Methods inherited from Core::BaseService

#batch, #batch_upload, #fetch_all, #http

Methods included from Core::Logging

#logger

Constructor Details

#initializePagespeedonlineService

Returns a new instance of PagespeedonlineService.



50
51
52
53
# File 'generated/google/apis/pagespeedonline_v4/service.rb', line 50

def initialize
  super('https://www.googleapis.com/', 'pagespeedonline/v4/')
  @batch_path = 'batch/pagespeedonline/v4'
end

Instance Attribute Details

#keyString

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.

Returns:

  • (String)

    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_userString

Returns An opaque string that represents a user for quota purposes. Must not exceed 40 characters.

Returns:

  • (String)

    An opaque string that represents a user for quota purposes. Must not exceed 40 characters.



44
45
46
# File 'generated/google/apis/pagespeedonline_v4/service.rb', line 44

def quota_user
  @quota_user
end

#user_ipString

Returns Deprecated. Please use quotaUser instead.

Returns:

  • (String)

    Deprecated. Please use quotaUser instead.



48
49
50
# File 'generated/google/apis/pagespeedonline_v4/service.rb', line 48

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.

Parameters:

  • url (String)

    The URL to fetch and analyze

  • filter_third_party_resources (Boolean) (defaults to: nil)

    Indicates if third party resources should be filtered out before PageSpeed analysis.

  • locale (String) (defaults to: nil)

    The locale used to localize formatted results

  • rule (Array<String>, String) (defaults to: nil)

    A PageSpeed rule to run; if none are given, all rules are run

  • screenshot (Boolean) (defaults to: nil)

    Indicates if binary data containing a screenshot should be included

  • snapshots (Boolean) (defaults to: nil)

    Indicates if binary data containing snapshot images should be included

  • strategy (String) (defaults to: nil)

    The analysis strategy (desktop or mobile) to use, and desktop is the default

  • utm_campaign (String) (defaults to: nil)

    Campaign name for analytics.

  • utm_source (String) (defaults to: nil)

    Campaign source for analytics.

  • fields (String) (defaults to: nil)

    Selector specifying which fields to include in a partial response.

  • quota_user (String) (defaults to: nil)

    An opaque string that represents a user for quota purposes. Must not exceed 40 characters.

  • user_ip (String) (defaults to: nil)

    Deprecated. Please use quotaUser instead.

  • options (Google::Apis::RequestOptions) (defaults to: nil)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'generated/google/apis/pagespeedonline_v4/service.rb', line 96

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', options)
  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