Rustixir commented on issue #10838:
URL: https://github.com/apache/apisix/issues/10838#issuecomment-1900034570
The body of my request model is empty
Because
This is my first endpoint and I just wanted to test it and expected
This api call reaches our server and the response is our server
Request validation error
the client request for "/ping" path with POST method
And this is our proto model
```
service VoucherService {
rpc Otp (VoucherOtpReq) returns (VoucherOtpRes);
}
message VoucherOtpReq{
// @inject_tag: json:"mobile"
string Mobile = 1;
}
message VoucherOtpRes{
// @inject_tag: json:"life_time"
int64 LifeTime = 1;
// @inject_tag: json:"length"
int32 Length = 2;
}
```
everything to be seems normal
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]