Search code examples
node.jsopenapi-generator

OpenAPI can't connected


I'm trying to build a API base on https://github.com/coinbase/rosetta-specifications/blob/master/api.yaml specification. Now i have run this yaml file in openapi generator for nodejs-express-server (https://openapi-generator.tech/docs/generators/nodejs-express-server)

When i want try to access the endpoint /network/list it give me error:

    {
    "message": "request should have required property 'headers'",
    "errors": [
        {
            "path": ".headers",
            "message": "should have required property 'headers'",
            "errorCode": "required.openapi.validation"
        }
    ]
}

I have add the following header in postman: Content-Type: application/json (as specify in yaml file).

can anyone please let me know what i'm doing wrong?


Solution

  • For me it worked after degrading the node version to 12.13.0