You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am creating a skill using nodejs + express + express adapter.
I want to add a middleware to intercept the request and check the request body to do some verifications but I get this error: Error in processing request. Do not register any parsers before using the adapter
Is this issue/feature-request still relevant?
We are working on prioritization of relevant issues and cleanup of rest. If we don’t hear back in 2 weeks, we will assume that the issue is not relevant and we will close it.
I am creating a skill using nodejs + express + express adapter.
I want to add a middleware to intercept the request and check the request body to do some verifications but I get this error:
Error in processing request. Do not register any parsers before using the adapter
This is my code for the index.ts:
So I get the body printed, but I get the error: Error in processing request. Do not register any parsers before using the adapter
But if I remove the line: app.use(bodyParser.json())
The skill works, but the body.req prints undefined in:
Any tip on how to handle this?
The text was updated successfully, but these errors were encountered: