- Added v=version with the current date in YYYYMMdd format;

- Added m=foursquare so as to use the Foursquare format (https://developer.foursquare.com/overview/versioning);
- Formatted code so as to match guidelines;
- Added claims to authenticated user identity;
- Added reference and commented code to demo project.
This commit is contained in:
Ricardo Peres
2015-03-18 18:21:00 +00:00
parent 4c9cebeb1b
commit 596282e597
8 changed files with 76 additions and 74 deletions

View File

@@ -10,6 +10,7 @@ using Owin.Security.Providers.BattleNet;
using Owin.Security.Providers.Buffer;
using Owin.Security.Providers.Dropbox;
using Owin.Security.Providers.EveOnline;
using Owin.Security.Providers.Foursquare;
using Owin.Security.Providers.GitHub;
using Owin.Security.Providers.GooglePlus;
using Owin.Security.Providers.GooglePlus.Provider;
@@ -204,6 +205,10 @@ namespace OwinOAuthProvidersDemo
//app.UseEveOnlineAuthentication("", "");
//app.UseSoundCloudAuthentication("", "");
//app.UseFoursquareAuthentication(
// clientId: "",
// clientSecret: "");
}
}
}