Skip to content

PowerShell OAuth 2.0 Client for Ubisecure SSO

License

Notifications You must be signed in to change notification settings

psteniusubi/Ubisecure.OAuth2

Repository files navigation

PowerShell OAuth 2.0 Client for Ubisecure SSO

Depends on Ubisecure.QueryString, Ubisecure.HttpListener

Used by Ubisecure.SSO.Management

Install from github.com

Windows

cd /d %USERPROFILE%\Documents\WindowsPowerShell\Modules
git clone https://github.com/psteniusubi/Ubisecure.OAuth2.git

Linux

cd ~/.local/share/powershell/Modules
git clone https://github.com/psteniusubi/Ubisecure.OAuth2.git

Example

$client = New-OAuthClientConfig -Json @"
{
    "redirect_uris":  [
                          "http://localhost/public"
                      ],
    "grant_types":  [
                        "authorization_code"
                    ],
    "client_id":  "public",
    "client_secret":  "public"
}
"@

$code = Get-OAuthAuthorizationCode -Client $client -Authority "https://login.example.ubidemo.com/uas" -Browser "default"

$token = Get-OAuthAccessToken -Client $client -Authority "https://login.example.ubidemo.com/uas" -Code $code

Get-OAuthUserInfo -Authority "https://login.example.ubidemo.com/uas" -Bearer $token

About

PowerShell OAuth 2.0 Client for Ubisecure SSO

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published