Vapor: How to get response URL using Vapor Client or async-http

170 Views Asked by At

Something I'm running into when using Vapor to crawl sites is if I enter a url like http://website(dot)com and it redirects to https://www.website(dot)com, I need to grab that final response URL to know what the final page URL is.

I can do this with URLSession but I'm not seeing something similar in the Vapor client. I tried using the Vapor client and the async-http package it's built on and I can't find the page URL listed in the response.

Any pointers would be appreciated, thank you.

Example getting this info using URLSession

if let url = URL(string: self) {
            do {
                let(_, response) = try await URLSession.shared.data(from: url)
                if let responseURL = response.url {
                    result = responseURL.description
                    return result
                }
            } catch {
            }
        }

Where this is the first line of the response, and you can easily use response.url to grab the below "URL" value:

<NSHTTPURLResponse: 0x600000210c00> { URL: https://github.com/ } { Status Code: 200, Headers {

0

There are 0 best solutions below