Functions/Show-AGGraphAccessToken.ps1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Function Show-AGGraphAccessToken{
<#
    .SYNOPSIS
        This will show the existing Token if one exists
 
    .DESCRIPTION
        This will show the existing Token if one exists
 
    .EXAMPLE
        Show-AGGraphAccessToken
         
        This will show the existing Token if one exists
 
    .NOTES
        Author: Lars Panzerbjørn
        Creation Date: 2021.08.24
#>

    Return $TokenResponse
}