GO实战案例 | 青训营笔记

62 阅读2分钟
package main  
  
import (  
"bytes"  
"encoding/json"  
"fmt"  
"io"  
"log"  
"net/http"  
)  
  
type DictRequest struct {  
    TransType string `json:"trans_type"`  
    Source string `json:"source"`  
    UserID string `json:"user_id"`  
}  
  
type DictResponse struct {  
    Rc int `json:"rc"`  
    Wiki struct {  
    } `json:"wiki"`  
    Dictionary struct {  
        Prons struct {  
            EnUs string `json:"en-us"`  
            En string `json:"en"`  
        } `json:"prons"`  
        Explanations []string `json:"explanations"`  
        Synonym []string `json:"synonym"`  
        Antonym []string `json:"antonym"`  
        WqxExample [][]string `json:"wqx_example"`  
        Entry string `json:"entry"`  
        Type string `json:"type"`  
        Related []interface{} `json:"related"`  
        Source string `json:"source"`  
    } `json:"dictionary"`  
}  
  
func main() {  
    client := &http.Client{}  
    //var data = strings.NewReader(`{"trans_type":"en2zh","source":"good"}`)  
    data := DictRequest{TransType: "en2zh", Source: "good"}  
    kk, err := json.Marshal(data)  
    if err != nil {  
    log.Fatal(err)  
    }  
    req, err := http.NewRequest("POST", "https://api.interpreter.caiyunai.com/v1/dict", bytes.NewReader(kk))  
    if err != nil {  
    log.Fatal(err)  
    }  
    req.Header.Set("authority", "api.interpreter.caiyunai.com")  
    req.Header.Set("accept", "application/json, text/plain, */*")  
    req.Header.Set("accept-language", "zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7,en-GB;q=0.6")  
    req.Header.Set("app-name", "xy")  
    req.Header.Set("content-type", "application/json;charset=UTF-8")  
    req.Header.Set("device-id", "1a4fe0707bc4090f398c5618ac5c8c5d")  
    req.Header.Set("origin", "https://fanyi.caiyunapp.com")  
    req.Header.Set("os-type", "web")  
    req.Header.Set("os-version", "")  
    req.Header.Set("referer", "https://fanyi.caiyunapp.com/")  
    req.Header.Set("sec-ch-ua", `"Microsoft Edge";v="113", "Chromium";v="113", "Not-A.Brand";v="24"`)  
    req.Header.Set("sec-ch-ua-mobile", "?0")  
    req.Header.Set("sec-ch-ua-platform", `"Windows"`)  
    req.Header.Set("sec-fetch-dest", "empty")  
    req.Header.Set("sec-fetch-mode", "cors")  
    req.Header.Set("sec-fetch-site", "cross-site")  
    req.Header.Set("user-agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 Edg/113.0.1774.42")  
    req.Header.Set("x-authorization", "token:qgemv4jr1y38jyq6vhvi")  
    resp, err := client.Do(req)  

    if err != nil {  
    log.Fatal(err)  
    }  
    defer resp.Body.Close()  
    bodyText, err := io.ReadAll(resp.Body)  
    if err != nil {  
    log.Fatal(err)  
    }  
    var dictResponse DictResponse  
    err = json.Unmarshal(bodyText, &dictResponse)  
    if err != nil {  
    log.Fatal(err)  
    }  
    fmt.Printf("%#v\n", dictResponse)  
}

今天把实战课程中的词典项目给做了一下,用到了十分新颖的东西。了解到了go是如何进行http的请求,以及明白如何去着一个网页的接口并使用它快速的构建一个go demo进行请求。

先打开彩云小译发送一个请求然后打开F12查看dict请求

image.png

然后抓取url打开urlConvert网站将它先生成一个简单的http go项目

image.png

到这一步就能正确的发送一个请求并且完成基本的功能但是我们的要求并不满足于此,我们希望请求与返回使用的是json格式 故借助ok tool 生成一下go 对应的结构体

image.png 这个结构体就封装了我们响应json的内容,通过go自带的json包就可以将响应的body转换成这个结构体,方便我们进行读取操作以及展示需要的信息,否则直接使用map也可以实现,但是却十分的不友好。