Class: Google::Apis::PagespeedonlineV5::PagespeedonlineService

Inherits:
Core::BaseService show all
Defined in:
generated/google/apis/pagespeedonline_v5/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_v5'

Pagespeedonline = Google::Apis::PagespeedonlineV5 # 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_v5/service.rb', line 50

def initialize
  super('https://www.googleapis.com/', 'pagespeedonline/v5/')
  @batch_path = 'batch/pagespeedonline/v5'
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_v5/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_v5/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_v5/service.rb', line 48

def user_ip
  @user_ip
end

Instance Method Details

#runpagespeed_pagespeedapi(url, category: nil, locale: nil, strategy: nil, utm_campaign: nil, utm_source: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::PagespeedonlineV5::PagespeedApiPagespeedResponseV5

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

  • category (Array<String>, String)

    A Lighthouse category to run; if none are given, only Performance category will be run

  • locale (String)

    The locale used to localize formatted results

  • strategy (String)

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

  • utm_campaign (String)

    Campaign name for analytics.

  • utm_source (String)

    Campaign source for analytics.

  • fields (String)

    Selector specifying which fields to include in a partial response.

  • quota_user (String)

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

  • user_ip (String)

    Deprecated. Please use quotaUser instead.

  • options (Google::Apis::RequestOptions)

    Request-specific options

Yields:

  • (result, err)

    Result & error if block supplied

Yield Parameters:

Returns:

Raises:



90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'generated/google/apis/pagespeedonline_v5/service.rb', line 90

def runpagespeed_pagespeedapi(url, category: nil, locale: 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::PagespeedonlineV5::PagespeedApiPagespeedResponseV5::Representation
  command.response_class = Google::Apis::PagespeedonlineV5::PagespeedApiPagespeedResponseV5
  command.query['category'] = category unless category.nil?
  command.query['locale'] = locale unless locale.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