Bagaimana untuk Menentukan URL Akhir Selepas Ubah Hala dalam Go?

Susan Sarandon
Lepaskan: 2024-11-15 05:02:02
asal
206 orang telah melayarinya

How to Determine the Final URL After Redirections in Go?

Retrieving Final URL after Redirections in Go

In Go's net/http package, with automatic redirection handling, numerous URLs often result in a specific terminal URL. Determining the final URL after a sequence of redirections can be a challenge.

One possible solution without employing a hackish workaround lies in examining the Request component of the Response object. The Request object corresponds to the ultimate URL accessed by the client.

package main

import (
    "fmt"
    "log"
    "net/http"
)

func main() {
    resp, err := http.Get("http://stackoverflow.com/q/16784419/727643")
    if err != nil {
        log.Fatalf("http.Get => %v", err.Error())
    }

    finalURL := resp.Request.URL.String()

    fmt.Printf("The URL you ended up at is: %v\n", finalURL)
}
Salin selepas log masuk

This code retrieves the final URL after possible redirections and prints it using the Request.URL.String() method.

Output:

The URL you ended up at is: http://stackoverflow.com/questions/16784419/in-golang-how-to-determine-the-final-url-after-a-series-of-redirects
Salin selepas log masuk

This approach eliminates the need for complicated computations and provides a straightforward way to determine the final destination of redirecting URLs in Go.

Atas ialah kandungan terperinci Bagaimana untuk Menentukan URL Akhir Selepas Ubah Hala dalam Go?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

sumber:php.cn
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Artikel terbaru oleh pengarang
Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan