Golang Struct 作为 POST 请求的有效负载

Hec*_*407 7 http go

刚接触 golang。我正在尝试向身份验证端点发出 POST 请求,以取回令牌以进一步请求身份验证。目前我得到的错误是missing "credentials". 我已经用 Python 编写了相同的逻辑,所以我知道我正在尝试做的是系统所期望的。

package main

import (
    "bufio"
    "bytes"
    "encoding/json"
    "fmt"
    "io/ioutil"
    "log"
    "net/http"
    "net/http/cookiejar"
    "os"
)

type Auth struct {
    Method   string `json:"credentials"`
    Email    string `json:"email"`
    Password string `json:"password"`
    Mfa      string `json:"mfa_token"`
}

func main() {
    reader := bufio.NewReader(os.Stdin)

    fmt.Print("Enter Email: ")
    e, _ := reader.ReadString('\n')
    fmt.Print("Enter Password: ")
    p, _ := reader.ReadString('\n')
    fmt.Print("Enter 2FA Token: ")
    authy, _ := reader.ReadString('\n')

    auth := Auth{"manual", e, p, authy}
    j, _ := json.Marshal(auth)
    jar, _ := cookiejar.New(nil)
    client := &http.Client{
        Jar: jar,
    }

    req, err := http.NewRequest("POST", "https://internaltool.com/v3/sessions", bytes.NewBuffer(j))
    if err != nil {
        log.Fatal(err)
    }
    req.Header.Add("Accept-Encoding", "gzip, deflate, br")
    res, err := client.Do(req)
    if err != nil {
        log.Fatal(err)
    }
    defer res.Body.Close()

    body, _ := ioutil.ReadAll(res.Body)
    s := string(body)
    if res.StatusCode == 400 {
        fmt.Println("Bad Credentials")
        fmt.Println(s)
        return
    }
}
Run Code Online (Sandbox Code Playgroud)

问题是 - 我是否正确地将 AUTH 结构编组到 JSON 并将其适当地添加到 POST 请求中?由于 API 甚至没有看到credentialsJSON 中的密钥,我想我一定是做错了什么。什么都有帮助。

Rya*_*tin 5

这是json.Marshal在 POST 请求的上下文中用于将 Struct 转换为 JSON 对象的最小可行示例。

Go 的标准库非常棒,没有必要引入外部依赖来做这么平凡的事情。

func TestPostRequest(t *testing.T) {

    // Create a new instance of Person
    person := Person{
        Name: "Ryan Alex Martin",
        Age:  27,
    }

    // Marshal it into JSON prior to requesting
    personJSON, err := json.Marshal(person)

    // Make request with marshalled JSON as the POST body
    resp, err := http.Post("https://httpbin.org/anything", "application/json",
        bytes.NewBuffer(personJSON))

    if err != nil {
        t.Error("Could not make POST request to httpbin")
    }

    // That's it!

    // But for good measure, let's look at the response body.
    body, err := ioutil.ReadAll(resp.Body)

    var result PersonResponse
    err = json.Unmarshal([]byte(body), &result)
    if err != nil {
        t.Error("Error unmarshaling data from request.")
    }

    if result.NestedPerson.Name != "Ryan Alex Martin" {
        t.Error("Incorrect or nil name field returned from server: ", result.NestedPerson.Name)
    }

    fmt.Println("Response from server:", result.NestedPerson.Name)
    fmt.Println("Response from server:", result.NestedPerson.Age)

}

type Person struct {
    Name string `json:"name"`
    Age  int    `json:"age"`
}

// NestedPerson is the 'json' field of the response, what we originally sent to httpbin
type PersonResponse struct {
    NestedPerson Person `json:"json"` // Nested Person{} in 'json' field
}


Run Code Online (Sandbox Code Playgroud)


Ari*_*ith 0

由于http.Client它是相对低级的抽象,强烈建议使用gorequesthttps://github.com/parnurzeal/gorequest)作为替代方案。

headers、querys 和 body 可以以任何类型发布,这有点像我们在 Python 中经常做的事情。