blob: 2f1609ace94bca19a593c73d6655fc8c87a596f6 [file] [log] [blame]
// Copyright 2018 Google LLC. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
// TODO(codyoss): uncomment after next generation and fix
// const (
// apiKey = "some-api-key"
// cx = "some-custom-search-engine-id"
// query = "some-custom-query"
// )
//
// func customSearchMain() {
// client := &http.Client{Transport: &transport.APIKey{Key: apiKey}}
//
// svc, err := customsearch.New(client)
// if err != nil {
// log.Fatal(err)
// }
//
// resp, err := svc.Cse.List().Q(query).Cx(cx).Do()
// if err != nil {
// log.Fatal(err)
// }
//
// for i, result := range resp.Items {
// fmt.Printf("#%d: %s\n", i+1, result.Title)
// fmt.Printf("\t%s\n", result.Snippet)
// }
// }