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
Hi thank you for this wonderful project! There are no other free and new flight search apis right now.
One improvement could be to remove the non-necessary returndate for oneway trip.
See here, if you comment out return date there will be an error.
package main import ( "context" "fmt" "log" "time" "github.com/krisukox/google-flights-api/flights" "golang.org/x/text/currency" "golang.org/x/text/language" ) func main() { session, err := flights.New() if err != nil { log.Fatal(err) } offers, priceRange, err := session.GetOffers( context.Background(), flights.Args{ Date: time.Now().AddDate(0, 0, 30), ReturnDate: time.Now().AddDate(0, 0, 37), SrcCities: []string{"Madrid"}, DstCities: []string{"Estocolmo"}, Options: flights.Options{ Travelers: flights.Travelers{Adults: 2}, Currency: currency.EUR, Stops: flights.Stop1, Class: flights.Economy, TripType: flights.OneWay, Lang: language.Spanish, }, }, ) if err != nil { log.Fatal(err) } if priceRange != nil { fmt.Printf("High price %d\n", int(priceRange.High)) fmt.Printf("Low price %d\n", int(priceRange.Low)) } fmt.Println(offers) }
The text was updated successfully, but these errors were encountered:
has this been fixed? I'm facing the same issue that I can't do one way trips
Sorry, something went wrong.
how to check for OneWay, it gives, it shows 0 go run examples/example1/main.go 0001-01-01 00:00:00 +0000 UTC 0001-01-01 00:00:00 +0000 UTC price 0
No branches or pull requests
Hi thank you for this wonderful project! There are no other free and new flight search apis right now.
One improvement could be to remove the non-necessary returndate for oneway trip.
See here, if you comment out return date there will be an error.
The text was updated successfully, but these errors were encountered: