1
C#でトークン認証ベースのwebapiを実行しましたが、私の問題はユーザーを別のサーバーのSQL Serverデータベースに検証する必要があるときです。接続、私は読者が正常に動作し、トークンを返しますが、私はここでは、SQL Serverで検証する必要が削除した場合、それは、ブラウザでCORSのエラーを返すには、私のコードは次のとおりです。ここでC#WebApi 2 CORS not working ExecuteReaderの場合
public override async Task GrantResourceOwnerCredentials(OAuthGrantResourceOwnerCredentialsContext context)
{
var identity = new ClaimsIdentity(context.Options.AuthenticationType);
string nombre = "";
string cadenaConexion = "Data Source=ipSQLServer;Initial Catalog=EDELIVERY;Persist Security Info=True;User ID=userDataBase;Password=PasswdUserDataBase";
SqlConnection conn = new SqlConnection(cadenaConexion);
conn.Open();
string sql = "select * from Usuario a inner join TipoUsuario b on a.CodTipoUsuario = b.Codigo where a.Usuario = '" + context.UserName + "' and a.Clave = '" + context.Password + "');";
SqlCommand cmd = new SqlCommand(sql);
SqlDataReader reader = cmd.ExecuteReader();
if (reader.HasRows)
{
while (reader.Read())
{
nombre = reader.GetString(0).ToString().Trim();
}
}
reader.Close();
conn.Close();
if (context.UserName == "admin" && context.Password == "admin")
{
identity.AddClaim(new Claim(ClaimTypes.Role, "admin"));
identity.AddClaim(new Claim("username", "admin"));
identity.AddClaim(new Claim(ClaimTypes.Name, "Nombre Admin"));
context.Validated(identity);
}
else if (context.UserName == "user" && context.Password == "user")
{
identity.AddClaim(new Claim(ClaimTypes.Role, "user"));
identity.AddClaim(new Claim("username", "user"));
identity.AddClaim(new Claim(ClaimTypes.Name, "Nombre Usuario"));
context.Validated(identity);
}
else {
context.SetError("error_grant", "Provided username and password is incorrect");
return;
}
}
コードです
loginApi: function (infoLogin) {
var deferred = $q.defer();
var url = "http://localhost:51372/token";
$http({
method: 'POST',
url: url,
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
data: 'username='+infoLogin.usuario+'&password='+infoLogin.passwd+'&grant_type=password'
}).then(function (resp, status, headers, config) {
deferred.resolve(resp);
},
function (err, status, headers, config) {
deferred.reject(err);
});
return deferred.promise;
}
私はsimを作った誰かが私を助けることができれば、ちょうど例のために、ちょうどいくつかのデータを取得する。