Giter VIP home page Giter VIP logo

go-weixin-sogou's Introduction

go-weixin-sogou

Go Reference

基于搜狗微信入口,获取公众号文章和话题

通过 goquery 实现,支持文章搜索,公众号搜索,文章获取,话题列表获取

Example

引用:go get -u github.com/reveever/go-weixin-sogou.

搜索文章

package main

import (
	"fmt"
  
	wxsg "github.com/reveever/go-weixin-sogou"
)

func main() {
	results, err := wxsg.SearchArticle("title", 1)
	if err != nil {
		panic(err)
	}

	for i, v := range results {
		fmt.Printf("%d: %s (%s)\n", i, v.Title, v.AccName)
	}
}

获取公众号最新文章

package main

import (
	"fmt"

	wxsg "github.com/reveever/go-weixin-sogou"
)

func main() {
	article, err := wxsg.GetLatestArticleByAccount("睡前消息编辑部", "MQZstudio")
	if err != nil {
		panic(err)
	}

	fmt.Println(article)
}

Doc & More examples

godoc

go-weixin-sogou's People

Contributors

reveever avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.