Table of Contents
cURL
Go语言
正确答案
简短回答
长答案
Home Backend Development Golang cURL and Postman HTTP POST works, but Golang request fails with status 400

cURL and Postman HTTP POST works, but Golang request fails with status 400

Feb 06, 2024 am 11:18 AM
go language

cURL 和 Postman HTTP POST 工作,但 Golang 请求失败,状态为 400

问题内容

我正在尝试通过 HTTP POST 以 JSON 格式发送 GooglePay 令牌。该请求在 cURL 和 Postman 上工作正常,但当我尝试使用 Go HTTP 请求时,服务器抱怨数据格式无效,HTTP 响应状态代码为 400。

cURL

curl --verbose --location 'https://fts-uat.cardconnect.com/cardsecure/api/v1/ccn/tokenize' \
    --header 'Content-Type: application/json' \
    --data '{
    "encryptionhandler": "EC_GOOGLE_PAY",
    "devicedata": "{\"signature\":\"MEQCIDTsnaYiwckYQFYky0i0wSn317HcKuAYrNYfh4Uw6Y4lAiAhDPxmheYFOEDGVYjVjZnPFHOrbYHwDUbkcYIxZDqU/w\\u003d\\u003d\",\"intermediateSigningKey\":{\"signedKey\":\"{\\\"keyValue\\\":\\\"MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEYD8gO936PEY6yEFDQolKLMcpKvjo1uZEdnKZ022tUOAERQKaEpoT6RAd6nDm1FbbFRUdionunr3vy/o72nSQ6w\\\\u003d\\\\u003d\\\",\\\"keyExpiration\\\":\\\"1701182324996\\\"}\",\"signatures\":[\"MEUCIQCbEHBbAXI/WEfguCnTkYYwgQeFZcN4/oBS8O79oQGl4wIgOmXKIihg6Ia9b7bUJckKAGrPF70fHZjCJcPGv88MMjA\\u003d\"]},\"protocolVersion\":\"ECv2\",\"signedMessage\":\"{\\\"encryptedMessage\\\":\\\"ynexar8PqRG3y1zKbNBUbbwRHbAbElnk2imema+8Zx89ex91/pgdy5ZzZKNhJ+LHJonuQKvdI9h0gWikhap7Jp6kqrnu0b4OzMxrRoj5wteUzDmm77F7WsBxi2DkIsqzcReDBZiTO3BSrJwvIkeL8mYr2yfVTZ0qY3KqCqXkzx0ANT3mZEdltqSEGOKaJKV38S1Oq0vGzQCKLxFI7Cxz5RHlTIM0WfBUigALfa+yJO4J6Tev0d4e9CYChz5DA/sBKxPf37796IxmvxxvNpytVqXYHKQWg6iAVfeKs8wbR6KA12mb6zqwTOrrLBrnLWdaBbX12flyvPFVywSJFHzTkV8WEB9mVoKrm/A2b27UV8RGFNrr9djCE1FZIgyS36VJVefLKlWQkeSGNESuLn0d7ftkv92+Gds2Hl9TQbAyy+IcGVERmQPo2EOhxf1xOpSQU8bTxLIFr+WqzGM0Q1+PquqxzQ\\\\u003d\\\\u003d\\\",\\\"ephemeralPublicKey\\\":\\\"BMAjXpWcm+kQlvIMzdhAnOJK+5RViyCaPA35gXTJGvW5pKZ6zDxD14cQYHfhccJZli24Fc+JbqnvIvtc6Yo19d8\\\\u003d\\\",\\\"tag\\\":\\\"3ZumWWU6hOw+f5V5GIKr6di4AkA0s3kzigqP3V1YzVo\\\\u003d\\\"}\"}"
}'
Copy after login

Go语言

url := "https://fts-uat.cardconnect.com/cardsecure/api/v1/ccn/tokenize"

    data := `{
        "encryptionhandler": "EC_GOOGLE_PAY",
        "devicedata": "{\"signature\":\"MEQCIDTsnaYiwckYQFYky0i0wSn317HcKuAYrNYfh4Uw6Y4lAiAhDPxmheYFOEDGVYjVjZnPFHOrbYHwDUbkcYIxZDqU/w\\u003d\\u003d\",\"intermediateSigningKey\":{\"signedKey\":\"{\\\"keyValue\\\":\\\"MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEYD8gO936PEY6yEFDQolKLMcpKvjo1uZEdnKZ022tUOAERQKaEpoT6RAd6nDm1FbbFRUdionunr3vy/o72nSQ6w\\\\u003d\\\\u003d\\\",\\\"keyExpiration\\\":\\\"1701182324996\\\"}\",\"signatures\":[\"MEUCIQCbEHBbAXI/WEfguCnTkYYwgQeFZcN4/oBS8O79oQGl4wIgOmXKIihg6Ia9b7bUJckKAGrPF70fHZjCJcPGv88MMjA\\u003d\"]},\"protocolVersion\":\"ECv2\",\"signedMessage\":\"{\\\"encryptedMessage\\\":\\\"ynexar8PqRG3y1zKbNBUbbwRHbAbElnk2imema+8Zx89ex91/pgdy5ZzZKNhJ+LHJonuQKvdI9h0gWikhap7Jp6kqrnu0b4OzMxrRoj5wteUzDmm77F7WsBxi2DkIsqzcReDBZiTO3BSrJwvIkeL8mYr2yfVTZ0qY3KqCqXkzx0ANT3mZEdltqSEGOKaJKV38S1Oq0vGzQCKLxFI7Cxz5RHlTIM0WfBUigALfa+yJO4J6Tev0d4e9CYChz5DA/sBKxPf37796IxmvxxvNpytVqXYHKQWg6iAVfeKs8wbR6KA12mb6zqwTOrrLBrnLWdaBbX12flyvPFVywSJFHzTkV8WEB9mVoKrm/A2b27UV8RGFNrr9djCE1FZIgyS36VJVefLKlWQkeSGNESuLn0d7ftkv92+Gds2Hl9TQbAyy+IcGVERmQPo2EOhxf1xOpSQU8bTxLIFr+WqzGM0Q1+PquqxzQ\\\\u003d\\\\u003d\\\",\\\"ephemeralPublicKey\\\":\\\"BMAjXpWcm+kQlvIMzdhAnOJK+5RViyCaPA35gXTJGvW5pKZ6zDxD14cQYHfhccJZli24Fc+JbqnvIvtc6Yo19d8\\\\u003d\\\",\\\"tag\\\":\\\"3ZumWWU6hOw+f5V5GIKr6di4AkA0s3kzigqP3V1YzVo\\\\u003d\\\"}\"}"
    }`

    req, _ := http.NewRequest(http.MethodPost, url, strings.NewReader(data))
    req.Header.Set("Content-Type", "application/json")

    client := &http.Client{}
    resp, err := client.Do(req)
    if err != nil {
        panic(err)
    }

    fmt.Println("Response Status:", resp.Status)
Copy after login

我尝试使用 nc 打印来自 cURL、Postman 和 GoLang 的所有 HTTP 标头和正文,它们看起来相同。我还操纵了用户代理以保持一致,但还没有运气。感谢任何帮助。


正确答案


简短回答

添加此:

req.ContentLength = 0
Copy after login

长答案

天知道什么原因,服务器只接受Transfer-Encoding:chunked。所以当您发送“正常”请求时,它看起来像这样 失败:

POST /cardsecure/api/v1/ccn/tokenize HTTP/1.1
Host: fts-uat.cardconnect.com
Content-Length: 1373
Copy after login

当您添加上述代码时,它看起来像这样并通过:

POST /cardsecure/api/v1/ccn/tokenize HTTP/1.1
Host: fts-uat.cardconnect.com
Transfer-Encoding: chunked
Copy after login

The above is the detailed content of cURL and Postman HTTP POST works, but Golang request fails with status 400. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the problem with Queue thread in Go's crawler Colly? What is the problem with Queue thread in Go's crawler Colly? Apr 02, 2025 pm 02:09 PM

Queue threading problem in Go crawler Colly explores the problem of using the Colly crawler library in Go language, developers often encounter problems with threads and request queues. �...

What libraries are used for floating point number operations in Go? What libraries are used for floating point number operations in Go? Apr 02, 2025 pm 02:06 PM

The library used for floating-point number operation in Go language introduces how to ensure the accuracy is...

In Go, why does printing strings with Println and string() functions have different effects? In Go, why does printing strings with Println and string() functions have different effects? Apr 02, 2025 pm 02:03 PM

The difference between string printing in Go language: The difference in the effect of using Println and string() functions is in Go...

How to solve the user_id type conversion problem when using Redis Stream to implement message queues in Go language? How to solve the user_id type conversion problem when using Redis Stream to implement message queues in Go language? Apr 02, 2025 pm 04:54 PM

The problem of using RedisStream to implement message queues in Go language is using Go language and Redis...

What should I do if the custom structure labels in GoLand are not displayed? What should I do if the custom structure labels in GoLand are not displayed? Apr 02, 2025 pm 05:09 PM

What should I do if the custom structure labels in GoLand are not displayed? When using GoLand for Go language development, many developers will encounter custom structure tags...

Which libraries in Go are developed by large companies or provided by well-known open source projects? Which libraries in Go are developed by large companies or provided by well-known open source projects? Apr 02, 2025 pm 04:12 PM

Which libraries in Go are developed by large companies or well-known open source projects? When programming in Go, developers often encounter some common needs, ...

What is the difference between `var` and `type` keyword definition structure in Go language? What is the difference between `var` and `type` keyword definition structure in Go language? Apr 02, 2025 pm 12:57 PM

Two ways to define structures in Go language: the difference between var and type keywords. When defining structures, Go language often sees two different ways of writing: First...

When using sql.Open, why does not report an error when DSN passes empty? When using sql.Open, why does not report an error when DSN passes empty? Apr 02, 2025 pm 12:54 PM

When using sql.Open, why doesn’t the DSN report an error? In Go language, sql.Open...

See all articles