在嘗試編寫透過POST 請求將檔案上傳到Telegram 的函數時,您遇到了錯誤「錯誤請求:請求中沒有照片」。您最初使用 SendPostRequest 函數的方法已被證明是不成功的。
經過徹底研究,發現了以下改進的解決方案:
<code class="go">import ( "bytes" "io" "mime/multipart" "net/http" "path/filepath" ) // content is a struct which contains a file's name, its type and its data. type content struct { fname string ftype string fdata []byte } func sendPostRequest(url string, files ...content) ([]byte, error) { var ( buf = new(bytes.Buffer) w = multipart.NewWriter(buf) ) // Iterate over the files and add them as form fields for _, f := range files { part, err := w.CreateFormFile(f.ftype, filepath.Base(f.fname)) if err != nil { return []byte{}, err } _, err = part.Write(f.fdata) if err != nil { return []byte{}, err } } // Close the multipart writer err := w.Close() if err != nil { return []byte{}, err } // Create a new POST request req, err := http.NewRequest("POST", url, buf) if err != nil { return []byte{}, err } // Set the Content-Type header req.Header.Add("Content-Type", w.FormDataContentType()) // Create a new HTTP client client := &http.Client{} // Send the request res, err := client.Do(req) if err != nil { return []byte{}, err } // Close the response body defer res.Body.Close() // Read the response body cnt, err := io.ReadAll(res.Body) if err != nil { return []byte{}, err } return cnt, nil }</code>
此更新的解決方案採用多部分形式發送文件的數據,這解決了問題並確保該文件存在於請求中。
以上是使用 Golang 向 Telegram 機器人發送文件時如何修復「錯誤請求:請求中沒有照片」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!