We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Any idea why I am not getting the dropdownlist in swagger UI?
var consulUri = this.Configuration["ConsulConfiguration:ConsulUri"]; app .UseMvc() .UseCors(options => options.WithOrigins("http://localhost:8080") .AllowAnyMethod() .AllowAnyHeader() .AllowCredentials()) .UseOcelotSwagger(async x => { var consulClient = new ConsulClient(c => c.Address = new Uri(consulUri)); var services = await consulClient.Agent.Services(); foreach (var (key, value) in services.Response) { x.SwaggerEndPoints.Add(new SwaggerEndPoint { Name = key, Url = $"/{value.Service}/swagger/v1/swagger.json", }); } }) .UseOcelot() .Wait();
The text was updated successfully, but these errors were encountered:
Thank you for your interest in this project. This code looks good, could you provide more information?
Sorry, something went wrong.
Caching Impl Rwing#1
75bd088
No branches or pull requests
Any idea why I am not getting the dropdownlist in swagger UI?
The text was updated successfully, but these errors were encountered: