We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to get target url from google's "I'm feeling lucky" request
as example I have an url:
https://www.google.com/search?q=youtube+portal+2+walkthrough+no+commentary&btnI
I'm doing request via SwiftSoup. I see html() of youtube site. So SwiftSoup doing all right.
html()
BUT!
guard let doc: Document = getHTMLDoc(from: queryUrl) else { return nil } let url2 = doc.location() // "" (empty) let url = doc.getBaseUri() // "" (empty)
so SwiftSoup can absolutely correctly get html, but don't know where from this html was taken.
Absolutely strange behavior.
The text was updated successfully, but these errors were encountered:
please submit a PR to add this
Sorry, something went wrong.
No branches or pull requests
I'm trying to get target url from google's "I'm feeling lucky" request
as example I have an url:
https://www.google.com/search?q=youtube+portal+2+walkthrough+no+commentary&btnI
I'm doing request via SwiftSoup. I see
html()
of youtube site. So SwiftSoup doing all right.BUT!
so SwiftSoup can absolutely correctly get html, but don't know where from this html was taken.
Absolutely strange behavior.
The text was updated successfully, but these errors were encountered: