Automatically complete keyword (v3)

Automatically complete the search keyword prefix.

Code sample

Ruby

To authenticate to CTS, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

# project_id     = "Project id required"
# company_name   = "The company's name which the job belongs to. The format is "projects/{project_id}/companies/{company_id}""
# query          = "Keyword prefix as auto complete query"

require "google/apis/jobs_v3"

jobs = Google::Apis::JobsV3
talent_solution_client = jobs::CloudTalentSolutionService.new
talent_solution_client.authorization = Google::Auth.get_application_default(
  "https://www.googleapis.com/auth/jobs"
)

page_size = 10
language_code = "en-US"
result = talent_solution_client.complete_project(
  project_id, company_name: company_name, page_size: page_size, query: query,
  language_code: language_code
) do |result, err|
  if err.nil?
    puts "Default auto complete result: #{result.to_json}"
  else
    puts "Error when auto completing. Error message: #{err.to_json}"
  end
end

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser.