Advertisement
Guest User

Untitled

a guest
May 25th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. using Microsoft.Owin;
  2. using Microsoft.Owin.Security.Cookies;
  3. using Owin;
  4. using Owin.Security.Providers.Steam;
  5.  
  6. namespace WebApplication
  7. {
  8. public partial class Startup
  9. {
  10.  
  11. public void ConfigureAuth(IAppBuilder app)
  12. {
  13. //other Config
  14.  
  15. app.UseSteamAuthentication("your API key");
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement