“TypeError: Failed to fetch” when making a GET request from SwaggerHub
“TypeError: Failed to fetch” when making a GET request from SwaggerHub I have the following API definition in SwaggerHub: swagger: '2.0' info: description: defaultDescription version: '0.1' title: defaultTitle host: swapi.co paths: /api/people: get: produces: - application/json parameters: - name: search in: query required: false type: string x-example: luke responses: '200': description: Definition generated from Swagger Inspector schema: $ref: '#/definitions/Model0' responseSchema: $ref: '#/definitions/Model0' definitions: Results: properties: name: type: string height: type: string mass: type: string hair_color: type: string skin_color: type: string eye_color: type: string birth_year: type: strin...
