// This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services.Configure <CookiePolicyOptions>(options => { // This lambda determines whether user consent for non-essential cookies is needed for a given request. options.CheckConsentNeeded = context => true; options.MinimumSameSitePolicy = SameSiteMode.None; }); var omdbConfig = Configuration.GetSection("OmdbApi"); var apiConfiguration = new OmdbApiConfiguration(omdbConfig["Url"], omdbConfig["Key"]); services.AddSingleton(apiConfiguration); services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); services.AddHttpClient <IMovieDetailsClient, MovieDetailsClient>(); }
public MovieDetailsClient(HttpClient httpClient, OmdbApiConfiguration apiConfiguration) { _apiConfiguration = apiConfiguration; httpClient.BaseAddress = new Uri(_apiConfiguration.Url); _httpClient = httpClient; }