Re: api gateway with arrow flight grpc

2025-03-22 Thread Aldrin
you would set the ticket value to whatever it is you want to pass. it should be serialized or binary. so it could be utf-8 or it could be a serialized protobuf message. whatever it is, the server side should know how to unpack it. If you're talking to an existing server look at what it's unpacki

Re: api gateway with arrow flight grpc

2025-03-22 Thread Z A
Thanks Bryce! Almost there 🙂 so i can make request to ListFlights, but for DoGet i need to pass the ticket data After few attempts, I still can't figure out how to pass the ticket data to DoGet, I see the Ticket has this proto schema. message Ticket { bytes ticket = 1; } _