我正在尝试在ASP.NET Web API和Identity http://bitoftech.net/2015/02/16/implement-oauth-json-web-tokens-authentication-in-asp-net-web-api-and-identity-2中实现JSON Web令牌身份验证
我已经按照本教程的每一步进行操作。
" ConfigurationManager.AppSettings [" AudienceSecret"]"此行返回null
据我所知,这一行返回了服务器的秘密。
那么,问题是什么,我做错了什么?
答案 0 :(得分:1)
确保您的.config
文件中有匹配的设置键
<appSettings>
<add key="AudienceSecret" value="Enter Value Here" />
</appSettings>
答案 1 :(得分:0)
在您提供的链接中,它是“as:AudienceSecret”。只要确保你没有做任何错字。它返回null值,因为它没有在web.config文件中找到提供的键及其各自的值。