go colly 爬虫博客到wordpress
https://www.aispider.cc
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
燕鹏
1c4a575eaa
|
hace 3 años | |
---|---|---|
spider | hace 3 años | |
wordpress | hace 3 años | |
README.md | hace 3 años | |
go.mod | hace 3 años | |
main.go | hace 3 años |
README.md
Introduction
An implementation of the standard WordPress API methods is provided,Use the https://github.com/kolo/xmlrpc library as client.
Todo List
- wp.newPost
- wp.getPost
- wp.getPosts
- wp.editPost
- wp.deletePost
Usage
-
wp.newPost
c, err := xmlrpc.NewClient(`https://example.com/xmlrpc.php`, xmlrpc.UserInfo{ `your username`, `your password`, }) if err != nil { log.Fatalln(err) } p := wordpress.NewPost(`content`, `title`, []string{`tag1`, `tag2`}, []string{`cate1`, `cate2`}) blogID, err := c.Call(p) if err != nil { log.Println(err) } log.Println(blogID)