Gabarito para o passo 'Encontrando as APIs do VTEX Commerce'
import { UserInputError } from '@vtex/api'
export async function validate(ctx: Context, next: () => Promise<any>) {
const {
vtex: {
route: { params },
},
} = ctx
console.log(ctx.vtex.authToken)
console.log('Received params:', params)
const { code } = params
if (!code) {
throw new UserInputError('Code is required') // Wrapper for a Bad Request (400) HTTP Error. Check others in https://github.com/vtex/node-vtex-api/blob/fd6139349de4e68825b1074f1959dd8d0c8f4d5b/src/errors/index.ts
}
const codeNumber = parseInt(code as string, 10)
ctx.state.code = codeNumber
await next()
}
Help us make this content better!
VTEX IO courses are open source. If you see something wrong, you can open a pull request!
Make a contributionUpdated almost 4 years ago