Explore >> Select a destination


You are here

svrooij.io
| | smsagent.blog
3.2 parsecs away

Travel
| | For a long time I've used the following PowerShell cmdlet from the Intune PowerShell SDK to get an access token for Microsoft Graph for running ad-hoc Graph queries or testing automation code locally: $GraphToken = Connect-MSGraph -PassThru Since most of the time I prefer to construct my own code to call the REST API directly...
| | www.stevejgordon.co.uk
2.3 parsecs away

Travel
| | In this post, I cover the steps required to create and sign a JWT and use it to authenticate a GitHub App built using .NET.
| | www.rasikjain.com
2.7 parsecs away

Travel
| | Here are three scenarios for implementing authentication workflows. Internet Applications (Public facing) For internet web applications and APIs, Session based (SessionID cookie) and Token Based (JWT) Authentication can be implemented. Session Based: Implemented for a majority of traditional and stateful web applications. Once the user is authenticated, A Session state is created and stored in an external State server or SQL database. The Session state is identified by a unique SessionID....
| | dusanmitrovic.rs
11.5 parsecs away

Travel
| Why I no longer use JWT and why you shoud maybe consider doing the same.