Skip to content
View alflokken's full-sized avatar

Organizations

@Intility
Block or Report

Block or report alflokken

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. PSAuthClient PSAuthClient Public

    PowerShell OAuth2.0/OpenID Connect (OIDC) Client.

    PowerShell 49 6

  2. msgraph-powershell-auth msgraph-powershell-auth Public

    Lightweight graph authentication, get security tokens (access/refresh) directly from the protocol by authorization code with PKCE, client credentials or refresh_token grant.

    PowerShell 7

  3. POC - PowerShell Spotify Authenticat... POC - PowerShell Spotify Authentication with token caching
    1
    param ( 
    2
        [string]$client_id = "YOUR_CLIENT_ID",
    3
        [string]$redirect_uri = "https://localhost",
    4
        [string]$scope = "user-read-currently-playing user-modify-playback-state"
    5
    )
  4. PowerShell Registry Cache PowerShell Registry Cache
    1
    function Invoke-Cache {
    2
        <#
    3
        .SYNOPSIS
    4
        Simple registry input/output.
    5