Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
24 righe
503 B
24 righe
503 B
package utils
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"net/http"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
const baseUrl = "https://www.aiprose.com/blog/"
|
|
|
|
func PostDataZZ(id int64) {
|
|
dataStr := baseUrl + strconv.FormatInt(id, 10)
|
|
url := "http://data.zz.baidu.com/urls?site=www.aiprose.com&token=lO2wHMVqVq8SC9Ag"
|
|
res, err := http.Post(url, "text/plain", strings.NewReader(dataStr))
|
|
if err != nil {
|
|
println(err)
|
|
}
|
|
defer res.Body.Close()
|
|
content, err := ioutil.ReadAll(res.Body)
|
|
if err != nil {
|
|
println(string(content))
|
|
}
|
|
}
|
|
|