jjzjj

Golang http.NewRequest 总是返回 404 - Postman ok

coder 2024-07-06 原文

我正在尝试编写一个 post 请求函数,将文件从 golang 服务器发送到客户端。代码从这里(golang POST data using the Content-Type multipart/form-data)抄了一点。无论出于何种原因,我总是收到“404 页面未找到”,即使通过 postman 完成的相同请求正在到达终点并成功返回。这是奇怪的行为,我不太确定如何调试。 (出于测试目的,我已经对 URL 进行了硬编码以访问本地运行的服务器。)

这是我的代码:

func PostUpload(values map[string]io.Reader, URL string){
    fmt.Println("inside PostUpload in outbound")
    client := &http.Client{}
    var err error

    var b bytes.Buffer
    w := multipart.NewWriter(&b)
    for key, r := range values {
            var fw io.Writer
            if x, ok := r.(io.Closer); ok {
                    defer x.Close()
            }
            // Add an image file
            if x, ok := r.(*os.File); ok {
                    if fw, err = w.CreateFormFile(key, x.Name()); err != nil {
                            return
                    }
            } else {
                    // Add other fields
                    if fw, err = w.CreateFormField(key); err != nil {
                            return
                    }
            }
            if _, err = io.Copy(fw, r); err != nil {
                fmt.Println("there was an error")
                fmt.Println(err)
            }
        }
    w.Close()

    // Now that you have a form, you can submit it to your handler.
        // req, err := http.NewRequest("POST", URL, &b)
        req, err := http.NewRequest("POST", "http://127.0.0.1:5000/upload", &b)
    if err != nil {
                fmt.Println("there was an error on http.NewRequest in outbound post file upload")
                fmt.Println(err)
    }
    // Don't forget to set the content type, this will contain the boundary.
        req.Header.Set("Content-Type", w.FormDataContentType())


        requestDump, err := httputil.DumpRequest(req, true)
        if err != nil {
            fmt.Println(err)
        }
        fmt.Println(string(requestDump))


    // Submit the request
    resp, err := client.Do(req)
    if err != nil {
                fmt.Println("there was an error on client do in outbound post file upload")
                fmt.Println(err)
        }

        resp_body, _ := ioutil.ReadAll(resp.Body)
        var parsed map[string]interface{}
        err = json.Unmarshal(resp_body, &parsed)
        if err!=nil{
            if typeof(resp_body)=="[]uint8"{
                fmt.Println("received []uint8, converting and displaying")
                fmt.Print(string(resp_body))
            }else{
                fmt.Println("inside unmarshal error")
                fmt.Println(err)
            }
        }

    return
}

这是控制台的输出:

api      | 21:16:09 app         | inside PostUpload in outbound
api      | 21:16:09 app         | POST /upload HTTP/1.1
api      | Host: 127.0.0.1:5000
api      | Content-Type: multipart/form-data; boundary=0ce8aee17e5d00524acd3875d8b4b41dba5f99d8a7796d56289e38f89c64
api      |
api      | --0ce8aee17e5d00524acd3875d8b4b41dba5f99d8a7796d56289e38f89c64
api      | Content-Disposition: form-data; name="file"; filename="/uploads/TIME^2019-01-26 21:16:09.413514444 +0000 UTCFILE^Any_Publishing.txt"
api      | Content-Type: application/octet-stream
api      |
api      | # © 2016 and later: Unicode, Inc. and others.
api      | # License & terms of use: http://www.unicode.org/copyright.html#License
api      | #
api      | # File: Any_Publishing.txt
api      | # Generated from CLDR
api      | #
api      |
api      | # Variables
api      | $single = \' ;
api      | $space = ' ' ;
api      | $double = \";
api      | $back = \` ;
api      |
api      | --0ce8aee17e5d00524acd3875d8b4b41dba5f99d8a7796d56289e38f89c64--
api      |
api      | 21:16:09 app         | received []uint8, converting and displaying
api      | 404 page not found

有人看到哪里出了问题吗?

编辑:

有人建议注释掉 req 上的转储,因为它可能会消耗 req,而将请求留空。我试过了,结果和上面一样。

有人提到他们想查看上传成功的 curl 请求,所以这里是:

patientplatypus:~/Downloads:15:48:28$curl -X POST -F "file=@./catpic.jpg" http://127.0.0.1:5000/upload
file uploaded successfully!

带有 -v 标志的 curl 的完整转储:

patientplatypus:~/Downloads:15:48:42$curl -v -X POST -F "file=@./catpic.jpg" http://127.0.0.1:5000/upload
Note: Unnecessary use of -X or --request, POST is already inferred.
*   Trying 127.0.0.1...
* TCP_NODELAY set
* Connected to 127.0.0.1 (127.0.0.1) port 5000 (#0)
> POST /upload HTTP/1.1
> Host: 127.0.0.1:5000
> User-Agent: curl/7.54.0
> Accept: */*
> Content-Length: 264915
> Expect: 100-continue
> Content-Type: multipart/form-data; boundary=------------------------48411aa948b523e2
>
< HTTP/1.1 100 Continue
* HTTP 1.0, assume close after body
< HTTP/1.0 200 OK
< Content-Type: text/html; charset=utf-8
< Content-Length: 27
< Server: Werkzeug/0.14.1 Python/3.6.5
< Date: Sat, 26 Jan 2019 22:12:19 GMT
<
* Closing connection 0
file uploaded successfully!

有人提到他们想看看我试图攻击的服务器,所以这里是:https://github.com/patientplatypus/pythonServer

最佳答案

那个 404 错误字符串看起来和 Go 标准库生成的一样:

你确定你真的在点击 Flask 应用程序吗?

关于Golang http.NewRequest 总是返回 404 - Postman ok,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54382921/

有关Golang http.NewRequest 总是返回 404 - Postman ok的更多相关文章

  1. ruby - 为什么 4.1%2 使用 Ruby 返回 0.0999999999999996?但是 4.2%2==0.2 - 2

    为什么4.1%2返回0.0999999999999996?但是4.2%2==0.2。 最佳答案 参见此处:WhatEveryProgrammerShouldKnowAboutFloating-PointArithmetic实数是无限的。计算机使用的位数有限(今天是32位、64位)。因此计算机进行的浮点运算不能代表所有的实数。0.1是这些数字之一。请注意,这不是与Ruby相关的问题,而是与所有编程语言相关的问题,因为它来自计算机表示实数的方式。 关于ruby-为什么4.1%2使用Ruby返

  2. ruby-on-rails - Rails - 乐观锁定总是触发 StaleObjectError 异常 - 2

    我正在学习Rails,并阅读了关于乐观锁的内容。我已将类型为integer的lock_version列添加到我的articles表中。但现在每当我第一次尝试更新记录时,我都会收到StaleObjectError异常。这是我的迁移:classAddLockVersionToArticle当我尝试通过Rails控制台更新文章时:article=Article.first=>#我这样做:article.title="newtitle"article.save我明白了:(0.3ms)begintransaction(0.3ms)UPDATE"articles"SET"title"='dwdwd

  3. ruby - 检查字符串是否包含散列中的任何键并返回它包含的键的值 - 2

    我有一个包含多个键的散列和一个字符串,该字符串不包含散列中的任何键或包含一个键。h={"k1"=>"v1","k2"=>"v2","k3"=>"v3"}s="thisisanexamplestringthatmightoccurwithakeysomewhereinthestringk1(withspecialcharacterslike(^&*$#@!^&&*))"检查s是否包含h中的任何键的最佳方法是什么,如果包含,则返回它包含的键的值?例如,对于上面的h和s的例子,输出应该是v1。编辑:只有字符串是用户定义的。哈希将始终相同。 最佳答案

  4. ruby - Ruby 中的隐式返回值是怎么回事? - 2

    所以我开始关注ruby​​,很多东西看起来不错,但我对隐式return语句很反感。我理解默认情况下让所有内容返回self或nil但不是语句的最后一个值。对我来说,它看起来非常脆弱(尤其是)如果你正在使用一个不打算返回某些东西的方法(尤其是一个改变状态/破坏性方法的函数!),其他人可能最终依赖于一个返回对方法的目的并不重要,并且有很大的改变机会。隐式返回有什么意义?有没有办法让事情变得更简单?总是有返回以防止隐含返回被认为是好的做法吗?我是不是太担心这个了?附言当人们想要从方法中返回特定的东西时,他们是否经常使用隐式返回,这不是让你组中的其他人更容易破坏彼此的代码吗?当然,记录一切并给出

  5. ruby-on-rails - ruby 日期方程不返回预期的真值 - 2

    为什么以下不同?Time.now.end_of_day==Time.now.end_of_day-0.days#falseTime.now.end_of_day.to_s==Time.now.end_of_day-0.days.to_s#true 最佳答案 因为纳秒数不同:ruby-1.9.2-p180:014>(Time.now.end_of_day-0.days).nsec=>999999000ruby-1.9.2-p180:015>Time.now.end_of_day.nsec=>999999998

  6. ruby - 从 String#split 返回的零长度字符串 - 2

    在Ruby1.9.3(可能还有更早的版本,不确定)中,我试图弄清楚为什么Ruby的String#split方法会给我某些结果。我得到的结果似乎与我的预期相反。这是一个例子:"abcabc".split("b")#=>["a","ca","c"]"abcabc".split("a")#=>["","bc","bc"]"abcabc".split("c")#=>["ab","ab"]在这里,第一个示例返回的正是我所期望的。但在第二个示例中,我很困惑为什么#split返回零长度字符串作为返回数组的第一个值。这是什么原因呢?这是我所期望的:"abcabc".split("a")#=>["bc"

  7. ruby-on-rails - 为什么在安装 Ruby 1.9.3 时出现 404 错误? - 2

    我最近对我的计算机(OS-MacOSX10.6.8)进行了删除,并且我正在重新安装我所有的开发工具。我再次安装了RVM;但是,它不会让我安装Ruby1.9.3。到目前为止我已经尝试过:rvminstall1.9.3rvm安装1.9.3-p194rvm安装1.9.3-p448rvminstall1.9.3--with-gcc=clang所有返回相同的命令行错误:Searchingforbinaryrubies,thismighttakesometime.Nobinaryrubiesavailablefor:osx/10.6/x86_64/ruby-1.9.3-p448.Continuin

  8. ruby - 为什么 Integer.respond_to?( :even? ) 返回 false? - 2

    我一直在研究RubyKoans,我发现about_open_classes.rbkoan很有趣。特别是他们修改Integer#even?方法的最后一个测试。我想尝试一下这个概念,所以我打开了Irb并尝试运行Integer.respond_to?(:even?),但令我惊讶的是我得到了错误。然后我尝试了Fixnum.respond_to?(:even?)并得到了错误。我还尝试了Integer.respond_to?(:respond_to?)并得到了true,当我执行2.even?时,我也得到了true。我不知道发生了什么。谁能告诉我缺少什么? 最佳答案

  9. ruby - Time.to_i 是否总是以 UTC 返回自 EPOCH 以来的秒数? - 2

    无论时间在哪个时区表示,时区差异是否总是被忽略?直觉上,对于那些使用UTC+2的人来说,从EPOCH开始经过的秒数应该更高。然而,事实并非如此。 最佳答案 Epoch基于utc时区https://en.wikipedia.org/wiki/Unix_time它与您当前所在的时区无关。 关于ruby-Time.to_i是否总是以UTC返回自EPOCH以来的秒数?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.

  10. ruby-on-rails - Ruby 流量控制 : throw an exception, 返回 nil 还是让它失败? - 2

    我在思考流量控制的最佳实践。我应该走哪条路?1)不要检查任何东西并让程序失败(更清晰的代码,自然的错误消息):defself.fetch(feed_id)feed=Feed.find(feed_id)feed.fetchend2)通过返回nil静默失败(但是,“CleanCode”说,你永远不应该返回null):defself.fetch(feed_id)returnunlessfeed_idfeed=Feed.find(feed_id)returnunlessfeedfeed.fetchend3)抛出异常(因为不按id查找feed是异常的):defself.fetch(feed_id

随机推荐