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
When working with https basepath defined as http, it takes from the page api-docs / resources.json. The script swagger_model.py following lines:
base_url = resource_listing.get ( 'basePath')
166 line
I added
if re.search ( "https", resources_url):
base_url = re.sub ( "http", "https", base_url)
then it began to work correctly.
The text was updated successfully, but these errors were encountered:
When working with https basepath defined as http, it takes from the page api-docs / resources.json. The script swagger_model.py following lines:
base_url = resource_listing.get ( 'basePath')
166 line
I added
if re.search ( "https", resources_url):
base_url = re.sub ( "http", "https", base_url)
then it began to work correctly.
The text was updated successfully, but these errors were encountered: