मुख्य सामग्रीवर वगळा

WEB API with Auth Token1

Steps to remembers
create a new app with asp.net mvc webapi
select individual authentication

Then add entity framwob
rk to connect employee db

Use asp net membership to connect to current db by setting up the default

<connectionStrings>
    <add name="DefaultConnection" connectionString="data source=.;initial catalog=EmployeeDB;user id=sa;password=sa;Integrated Security=True" providerName="System.Data.SqlClient" />
  <add name="EmployeeDBEntities" connectionString="metadata=res://*/EmployeeDBEntities.csdl|res://*/EmployeeDBEntities.ssdl|res://*/EmployeeDBEntities.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=.;initial catalog=EmployeeDB;user id=sa;password=sa;;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /></connectionStrings>


get token
  post request
http://localhost:64634/token

requestbody
username=eer.e@gmail.com&password=erereer@123&grant_type=password

 use that
get records

getrecrods by putting auth token

Autharization:Bearer 1dYHpSpoEPp6h4aKr1Ym-W4K4DeqltrrYMZh4y60QbfcDaDurycTsD_TDGQRcgMnuW0cNF7e5UPFthtJbtgAQslKON4lhDwGKgwrHJ9q4tfEHdea96g-4U6CcA12g2JfeAL6UulJpmA2-jwKzWtzEsQ5NX46H9-va4UzicC--M3n_uDdhVC3A_Yw4uLTyFK-tDytMK2zGShL3Tgno0SVvrdYs0iKX4-tVpdFOKDYCqLy4avSk0N0IA8uOHOu4ksch3yJ1eTIfITQVW4-GdyLv4YTmP2Ri-AGmUm4a_oLSqOiqgpFt6lcaiJ09Zmbx31zN_o-QPlYtuJh6by9weVrCnqRu3O6S0CWqP1rYN27tJvg7_R0UC7orN-R69vmldFCNu9jnM5Z0qIpHSV6soBcuIEI3VD1-w7hUSvff3lnKCnl8lm07W51TgNuuuKDnVCO4ryP9ClKG3QLe9WZE2Dw4QVECs8l0gqM3VQdssiEmpA8R2Szg5qRkSIbp7YuvGFa_0AZwfQ_WseMlgXZrseKpQ
in headers

टिप्पण्या

या ब्लॉगवरील लोकप्रिय पोस्ट

How To Customize Password Policy in ASP.Net Identity   Nimit Joshi   Jan 17  2014   Article 3 9 132.8k facebook twitter linkedIn google Plus Reddit Expand Download Free Office API Introduction Microsoft has released a new version of ASP.NET Identity, 2.0.0-alpha 1. You can refer to  ASP.NET Identity Preview  to get the idea of this release. In that context, we are here today to create a MVC application using ASP.NET Identity to customize the password to provide better security to the application. You'll learn here to modify the minimum length of the password and to make the entering of numeric and special characters in the password mandatory and disallow recently used passwords. By default the ASP.NET Identity requires that the minimum length of the password is 6 characters and here we change it to 8. We'll work on the Visual Studio 2013 version and you must update all the assemblies rela...

WCF Windows communication foundation

WCF:Why WCF Actually, WCF is going to unify all in one : web services : enterprise service : Remoting What is WCF? WCF  stands for  Windows Communication Foundation  and is part of .NET 3.0. WCF is Microsoft platform for building distributed and interoperable applications. What is a distributed application? In simple terms a distributed application, is an application where parts of it run on 2 or more computers.  Distributed applications  are also called as  connected systems. Examples: A web application running on one machine and a web service that this application is consuming is running on another machine.     An enterprise web application may have the following tiers, and each tier may be running on a different machine 1. Presentation tier 2. Business tier   3. Data Access tier     Why build distributed applications? There are several reasons for this 1.  An enterprise application ma...

Dependency Inversion Principle, Dependency Injection and Inversion Of Control

Dependency Inversion Principle, Dependency Injection and Inversion Of Control I’m a big fan of Dependency Injection pattern since it allows me to create more testable, maintainable and loosely coupled components. While it is easy to apply this pattern if you’ve seen some code samples you need more time to understand principles and terms around this pattern. In this article I will try to illustrate differences between those terms and explain how they come to work together. I will use well known car/engine example in this article but any example with dependency will do. All examples are written in C# language. Let’s first define few example classes: public class Engine { } public class Car { private Engine _engine ; public Car ( ) { _engine = new Engine ( ) ; } } n the example above we can see that Car (higher level component) depends on Engine (lower level component). At some point we may need to make car more reusable, for examp...