В .NET Core API файлы cookie всегда имеют значение null - PullRequest
0 голосов
/ 19 октября 2018

У меня есть .NET Core API, и я хочу реализовать функцию капчи.К сожалению, куки не работают, так как всегда получают нулевое значение.

Файл запуска:

открытый класс запуска {открытый запуск (конфигурация IConfiguration) {конфигурация = конфигурация;}

    public IConfiguration Configuration { get; }

    // This method gets called by the runtime. Use this method to add services to the container.
    public void ConfigureServices(IServiceCollection services)
    {
        // services
        services.AddScoped<ICaptchaService, CaptchaService>();

        services.AddDistributedMemoryCache();

        services.AddSession(options =>
        {
            // Set a short timeout for easy testing.
            //options.IdleTimeout = TimeSpan.FromSeconds(3000);
            options.Cookie.HttpOnly = false;
        });

        services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);

    }

    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
    public void Configure(IApplicationBuilder app, IHostingEnvironment env)
    {
        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
        }
        else
        {
            app.UseExceptionHandler("/Error");
            app.UseHsts();
        }

        app.UseHttpsRedirection();
        app.UseStaticFiles();
        //app.UseCookiePolicy();
        app.UseSession();
        //app.UseHttpContextItemsMiddleware();
        app.UseMvc();
    }
}

Настройка файла cookie (при загрузке капчи):

    [HttpGet("{name}", Name = "GetCaptcha")]
    public IActionResult GetCaptcha(string name)
    {
        var newCaptcha = _captchaService.CreateNewCaptcha(5);
        var newCaptchaImage = _captchaService.CreateCaptchaImage(newCaptcha);

        //Return the captcha cookie
        HttpContext.Response.Cookies.Append(
            name,
            JsonConvert.SerializeObject(newCaptcha, Formatting.None, new JsonSerializerSettings { ContractResolver = new CamelCasePropertyNamesContractResolver() })
        );          


        return Ok(newCaptchaImage);
    }

Моя модель (при отправке капчи):

var captchaJson = HttpContext.Request.Cookies[name];

Iпонятия не имею, почему это не работает.Может кто-нибудь, пожалуйста, скажите мне, что я делаю не так.

...