Commit Graph

257 Commits (9c4bceb7e2f2e01bf4154b04acce50e1b5f08391)

Author SHA1 Message Date
Scott Addie bd4d2a6387
Add missing closing paren 2017-10-30 13:22:50 -05:00
Scott Addie bd666067fa
Alphanumeric --> non-alphanumeric (#4668) 2017-10-30 10:51:43 -05:00
Scott Addie e9984b06a8 Update Windows auth doc to 2.0 (#4617)
* Update Windows auth doc to 2.0

* Add code snippet highlighting

* Convert titles to sentence case

* Tweak titles

* Verbiage tweak

* Minor edits

* Add launchSettings.json file

* Minor edits

* Fix title metadata error

* Shorten sentence

* Replace colon with period

* Link to Simple Authorization doc

* Work with Windows auth section updates

* Swap section orders

* Add RunImpersonated code sample

* Add Startup.cs code snippet import

* Minor tweak
2017-10-26 11:30:04 -05:00
Luke Latham 58b14853b7 Link fix in cookie.md topic (#4611) 2017-10-23 17:01:56 -10:00
Luke Latham e45d9cb634 security/data-protection/configuration updates (#4549)
* Security/DP/Configuration updates

Updates

Update bookmarks

Updates

* Revert anchor additions

* Update

* Drop lib from sample

* React to feedback
2017-10-20 10:15:26 -10:00
Luke Latham ce215b2a94 Update Cookie Auth without Identity topic (#4538)
* Update Cookie Auth without Identity topic

Addresses #3777

Updates

* React to feedback

* Small change

* React to feedback

* Update for Cookie.SameSite and Cookie Policy Middleware

* React to feedback

* Update warning

* Nit change in method call

* Revert suggestion added to warning
2017-10-18 14:10:53 -10:00
Joachim Sauer e17d0c2593 Broken link fixed. (#4591)
* Broken link fixed.

The the link to "Securing ASP.NET Core apps with IdentityServer4" was broken. The link was replaced with a working one.

* Update index.md

* Update index.md
2017-10-18 14:05:07 -10:00
Anatoliy Siryi 48c94be410 Fixed broken Facebook link (#4592) 2017-10-18 13:54:04 -10:00
Scott Addie 912a1efc8f Fix invalid bookmarks (#4570) 2017-10-13 15:50:30 -05:00
Scott Addie 1cbd792135 Merge pull request #4531 from aspnet/scottaddie/limiting-identity-2.0
2.0 update of Limiting identity by scheme doc
2017-10-12 15:41:46 -05:00
Scott Addie fb8d79c28e Implement Rick's suggestion in cookie doc 2017-10-12 12:20:58 -05:00
Scott Addie a73fb5161f Fix incorrect file name in QR Code doc 2017-10-11 21:33:55 -05:00
Scott Addie 5dda7cb14f Remove unnecessary anchors from social auth docs 2017-10-11 15:56:08 -05:00
Scott Addie cc85485f9a Remove unnecessary anchor 2017-10-11 10:44:16 -05:00
Scott Addie 4d886718e9 Fixes #4517 (#4519) 2017-10-09 17:03:02 -10:00
Scott Addie de47f188ea TOC edits for Azure App Service Auth doc 2017-10-05 15:38:46 -05:00
Isaac Levin af6c2a58ea Azure App Service Authentication (Easy Auth) #4095 (#4501)
* add easy auth link to Authentication Index

* absolute url
2017-10-05 12:57:13 -07:00
Derek Christensen b23c8bd76b 2fa twilio sample (#4485)
* Removed unnecessary var.

* Implemented Async Twilio call.
2017-10-03 09:45:25 -07:00
Rick Anderson 53957db410 Update index.md (#4480) 2017-10-03 09:44:18 -07:00
Scott Addie f5cf472d49 Add missing code snippet type 2017-09-29 22:05:53 -05:00
Scott Addie a359d96251 Pass scheme parameters in code snippet 2017-09-29 14:20:49 -05:00
Scott Addie 13291956ad Merge pull request #4437 from aspnet/scottaddie/identity-pks-2.0
Update Identity PKs doc to 2.0
2017-09-29 14:05:08 -05:00
Rick Anderson 68ea9b2193 Update identity-primary-key-configuration.md 2017-09-29 11:33:22 -07:00
Scott Addie 846bad5714 Indent tabs 2017-09-29 11:56:13 -05:00
Scott Addie 026ca74b35 Minor edits 2017-09-29 08:58:43 -05:00
Scott Addie 1e21a36eb8 Remove extra space 2017-09-29 08:49:58 -05:00
Rick Anderson 46df9643e9 Update identity-enable-qrcodes.md 2017-09-28 16:53:18 -07:00
Rick Anderson 183c7ef6f5 Update identity-enable-qrcodes.md 2017-09-28 16:51:48 -07:00
Rick Anderson 0e30d95955 Update identity-enable-qrcodes.md 2017-09-28 16:48:49 -07:00
Scott Addie d5a4a34de8 More edits 2017-09-28 15:38:03 -05:00
Scott Addie ede2daa71c More edits 2017-09-28 15:30:22 -05:00
Scott Addie 11829a7dad More edits 2017-09-28 15:21:51 -05:00
Scott Addie 3371f433f9 More edits 2017-09-28 15:13:03 -05:00
Scott Addie 4c91cd6013 More edits 2017-09-28 14:44:51 -05:00
Scott Addie d165f346ae More edits 2017-09-28 14:30:36 -05:00
Scott Addie 433a0693a5 Introduce tabs 2017-09-28 12:56:53 -05:00
Scott Addie ed1bd23dc8 Alter app cookie configuration code samples 2017-09-28 12:08:38 -05:00
Scott Addie 459733d7a3 Modify section title 2017-09-28 10:18:40 -05:00
Scott Addie 98d8e7774c Upgrade Identity PKs doc to 2.0 2017-09-28 10:05:12 -05:00
Scott Addie c4661e0410 Add missing param to AddCookie call 2017-09-27 11:09:37 -05:00
Ryan O'Neill dcf39ad601 Fix demo code for AddAuthentication.AddCookie
In .Net Core 2.0 using the code as supplied results in an exception, the fix is to pass the scheme name when calling AddCookie.

Fails:
services.AddAuthentication("MyCookieAuthenticationScheme")
        .AddCookie

Works:
Fix demo code for services.AddAuthentication.AddCookie
services.AddAuthentication("MyCookieAuthenticationScheme")
        .AddCookie("MyCookieAuthenticationScheme",
2017-09-27 15:05:58 +01:00
Daniel Roth eb4f77fdc3 Use tilda syntax for QR code script reference 2017-09-26 05:50:38 -07:00
Scott Addie 0d3c1fb6de Merge pull request #4389 from aspnet/scottaddie/remove-https-doc
Fixes #4388
2017-09-25 14:01:26 -05:00
Scott Addie 2f59c7a2e9 Create include for duplicated note text 2017-09-25 13:45:31 -05:00
Scott Addie 2d56e61a6f Expand change to all social auth providers 2017-09-25 13:22:14 -05:00
Scott Addie 4a1f227cd5 Fixes #4388 2017-09-25 13:07:35 -05:00
Scott Addie e9ee05a522 Add note regarding AddAuthentication and AddIdentity 2017-09-25 12:46:19 -05:00
Scott Addie 8816cffb0f Remove unnecessary warnings from social auth docs 2017-09-25 09:58:07 -05:00
Daniel Roth 4ba5259755 Remove note about calling AddAuthentcation multiple times 2017-09-25 06:37:16 -07:00
Luke Latham 18d1878f00 Trim keywords of keyword metadata
Patch 3
2017-09-21 02:22:29 -05:00