We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MSAL.PS か Azure AD PowerShell Module, Microsoft Graph PowerShell SDK でできるのであれば生で MSAL 使うのをやめたい。
The text was updated successfully, but these errors were encountered:
サインイン アクティビティについては、Microsoft Graph SDK がレスポンスを独自のオブジェクトに変換するため、ConvertTo-Json で日付のオブジェクトが Date(1629178519000) のようになってしまう。
ConvertTo-Json
Date(1629178519000)
$signIns = Get-MgAuditLogSignIn -Top 10 $signIns[0].CreatedDateTime | ConvertTo-Json # { # "value": "\/Date(1629178519000)\/", # "DateTime": "2021年8月17日 5:35:19" #}
結局 Invoke-GraphRequest で nextlink の処理を自前で実装するしかなさそうであるが、429 エラーの処理が怪しく、であれば現状 MSAL ライブラリを生で使って自前でコードを書いたほうが取り回しが楽そう。何か良い手があればコメントください。
Sorry, something went wrong.
一応、生の JSON を取得するには Azure AD Graph SDK を使って、以下のようにするのが最も容易。ただしスロットリングのエラーハンドリングはおそらく実装されていないと思う。
(Get-AzureADAuditSignInLogs).ToJson()
#355 ADAL の非推奨に言及
watahani
No branches or pull requests
MSAL.PS か Azure AD PowerShell Module, Microsoft Graph PowerShell SDK でできるのであれば生で MSAL 使うのをやめたい。
The text was updated successfully, but these errors were encountered: