Learn what an API Gateway is and how to build yours in ASP.NET Core by using Ocelot.
Read more…
Brought to you by @joydipkanjilal
Learn what an API Gateway is and how to build yours in ASP.NET Core by using Ocelot.
Read more…
Brought to you by @joydipkanjilal
What’s up Devs! How did you like this post? Please share any comments or feedback with us on this thread
Can you explain the below line -
services.AddOcelot(Configuration);
What does Configuration mean this context. Is it an object or do we need to add any namespace for it
The AddOcelot overloaded method adds ocelot services - in this example, we’re passing an instance of type IConfiguration (the instance name is Configuration) to the AddOcelot method as an argument. Hope this helps!
This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.