├── .gitattributes ├── Authorization Code Grant Flow ├── LoginBrowser.psm1 └── RESTwithAUTHCODE_MSAL.ps1 ├── LICENSE ├── MSAL └── Microsoft.Identity.Client.dll ├── Native Client └── RESTwithNATIVECLIENT_MSAL.ps1 └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntabrizi/Microsoft-Authentication-with-PowerShell-and-MSAL/HEAD/.gitattributes -------------------------------------------------------------------------------- /Authorization Code Grant Flow/LoginBrowser.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntabrizi/Microsoft-Authentication-with-PowerShell-and-MSAL/HEAD/Authorization Code Grant Flow/LoginBrowser.psm1 -------------------------------------------------------------------------------- /Authorization Code Grant Flow/RESTwithAUTHCODE_MSAL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntabrizi/Microsoft-Authentication-with-PowerShell-and-MSAL/HEAD/Authorization Code Grant Flow/RESTwithAUTHCODE_MSAL.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntabrizi/Microsoft-Authentication-with-PowerShell-and-MSAL/HEAD/LICENSE -------------------------------------------------------------------------------- /MSAL/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntabrizi/Microsoft-Authentication-with-PowerShell-and-MSAL/HEAD/MSAL/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /Native Client/RESTwithNATIVECLIENT_MSAL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntabrizi/Microsoft-Authentication-with-PowerShell-and-MSAL/HEAD/Native Client/RESTwithNATIVECLIENT_MSAL.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntabrizi/Microsoft-Authentication-with-PowerShell-and-MSAL/HEAD/README.md --------------------------------------------------------------------------------