项目作者: tiancheng91

项目描述 :
google cse sdk
高级语言: Go
项目地址: git://github.com/tiancheng91/google-cse.git
创建时间: 2018-07-13T23:23:09Z
项目社区:https://github.com/tiancheng91/google-cse

开源协议:MIT License

下载


google cse for golang

cse.google.com api for golang

google 自定义搜索

Example

  1. package main
  2. import cse "github.com/tiancheng91/google-cse"
  3. func main() {
  4. agent := cse.New("008063188944472181627:xqha3yefaee", "zh_CN")
  5. # 参数: 查询词, 页数, 页大小
  6. result = agent.Search("123456", 1, 20)
  7. }