-
Notifications
You must be signed in to change notification settings - Fork 49
Open
Description
I am keep getting
409 Conflict
{
"code": "InvalidArgument",
"message": "name (MISSING): Field is required, email (INVALID): Invalid email"
}
if I am sending data with
Content-Type: application/x-www-form-urlencoded
name=Anton&email=boogagoogle.co
import restify from 'restify';
import restifyValidation from 'node-restify-validation';
const server = restify.createServer();
server.use(restify.plugins.queryParser());
server.use(restify.plugins.bodyParser());
server.use(restifyValidation.validationPlugin());
server.post({
url: '/',
validation: {
queries: {
name: {
isRequired: true,
},
email: {
isEmail: true
},
},
}}, async (req, res, next)=>{});
I have tried content instead of queries also.
What gone wrong?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels