We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 099d931 commit f8236c8Copy full SHA for f8236c8
WebApi/Startup.cs
@@ -44,8 +44,7 @@ public Startup(IConfiguration configuration, IHostingEnvironment env)
44
// This method gets called by the runtime. Use this method to add services to the container.
45
public void ConfigureServices(IServiceCollection services)
46
{
47
- // string SecretKey = Configuration["AppSecret"];
48
- string SecretKey = "141FE29A91D7FA1A13F3C713BB789";
+ string SecretKey = Configuration["AppSecret"];
49
SymmetricSecurityKey _signingKey = new SymmetricSecurityKey(Encoding.ASCII.GetBytes(SecretKey));
50
51
// Add framework services.
0 commit comments