어디서 Client Secret를 구할 수 있나요?

문의 시, 사용하시는 개발환경과 디벨로퍼스 앱ID를 알려주세요.


ID 1134292
Blazor 앱에 KakaoTalk Authentication 을 넣으려고 합니다.
App Keys 페이지에서 REST APIKey 을 ClientId 로 하려고 하는데 ClientSecret은 어디서 만들수 있나요?

// Sets authentication providers
services.AddAuthentication(options =>
    {
        options.DefaultScheme = IdentityConstants.ApplicationScheme;
        options.DefaultSignInScheme = IdentityConstants.ExternalScheme;
    })
   .AddKakaoTalk(options =>
   {
       IConfigurationSection section = configuration.GetSection("Authentication:KakaoTalk");
       options.ClientId = section["ClientId"];
       options.ClientSecret = section["ClientSecret"];
   })
   //.AddApple(options =>
   //{
   //    IConfigurationSection section = configuration.GetSection("Authentication:Apple");
   //     options.ClientId = section["ClientId"] ?? string.Empty;
   //     options.KeyId = section["KeyId"] ?? string.Empty;
   //     options.TeamId = section["TeamId"] ?? string.Empty;
   //     options.UsePrivateKey(
   //         (keyId) => environment.ContentRootFileProvider.GetFileInfo($"AuthKey_{keyId}.p8"));
   //})
   .AddIdentityCookies();