Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not able to parse stripe openapi file #247

Open
saireddy12 opened this issue Jul 2, 2023 · 2 comments
Open

Not able to parse stripe openapi file #247

saireddy12 opened this issue Jul 2, 2023 · 2 comments

Comments

@saireddy12
Copy link

saireddy12 commented Jul 2, 2023

I am using this library in a javascript file and trying to run it using python

the library is able to parse many of the openapi files correctly but its taking forever to process Stripe openapi file
https://api.apis.guru/v2/specs/stripe.com/2022-11-15/openapi.json

I am using the below in a javascript function
const api = await SwaggerParser.dereference(inputFilePath)

Installed the library using npm install @apidevtools/swagger-parser

Fyi , i did check this and installing the old version didn't help
#221

Please let me know , if i am doing something wrong.

Thanks.!

@sudhanshug16
Copy link

Hey, did you figure out a solution to this? I am also stuck parsing stripe's OpenAPI

@vcs-dev
Copy link

vcs-dev commented Sep 27, 2023

I am using this library in a javascript file and trying to run it using python

the library is able to parse many of the openapi files correctly but its taking forever to process Stripe openapi file https://api.apis.guru/v2/specs/stripe.com/2022-11-15/openapi.json

I am using the below in a javascript function const api = await SwaggerParser.dereference(inputFilePath)

Installed the library using npm install @apidevtools/swagger-parser

Fyi , i did check this and installing the old version didn't help #221

Please let me know , if i am doing something wrong.

Thanks.!

Hello.

Try this way:
`import SwaggerParser from '@apidevtools/swagger-parser';

const parser= new SwaggerParser();

const getDereferencedApi(async () => {
await parser.dereference(path to your json file); //The path can be also a url.
console.log(parser.api);
});`

If the problem persists, check the reading permission of your json file.

I hope this helps.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants