我正在做一个抽搐扩展,我已经为这个应用程序创建了一个外部API以供连接。这个错误我已经犯了大约两天了,我似乎找不到解决办法。
Refused to connect to 'https://community.shadowmont.com/oauth/GetUserProfileDetails' because it violates the following Content Security Policy directive: "connect-src 'self' https://lgqt8zmxwk4v3ubxobrmy8r2f49uc1.ext-
我还在学习如何使用MVC5,到目前为止,我设法在manage视图页面中为我的用户配置文件获取自定义字段:
用户注册并填写这些字段,它们与用户名和密码数据存储在同一位置。我在IdentityModels.cs中的ApplicationUser下面添加了这些字段,如下所示
public class ApplicationUser : IdentityUser
{
// Additional user fields needed for registration
public string FirstName { get; set; }