在 identityserver 4 中,将以下代码放在 apiresource 上
.AddIdentityServerAuthentication(options =>
{
options.Authority = _platformSettings.IdentityServerUrl;
options.RequireHttpsMetadata = true;
options.ApiName = "myapi";
});
但它似乎很不受保护。如何阻止某些作恶者创建控制台应用程序并使用相同的代码?在这种情况下,他们只需要知道我的 apiresource 的名称即可myapi。
HUWWW
相关分类