Skip to content
New issue

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

Graph API の呼び出しを PowerShell モジュール #283

Open
1 of 2 tasks
watahani opened this issue Feb 26, 2021 · 3 comments
Open
1 of 2 tasks

Graph API の呼び出しを PowerShell モジュール #283

watahani opened this issue Feb 26, 2021 · 3 comments
Assignees
Labels
help wanted Extra attention is needed

Comments

@watahani
Copy link
Member

watahani commented Feb 26, 2021

MSAL.PS か Azure AD PowerShell Module, Microsoft Graph PowerShell SDK でできるのであれば生で MSAL 使うのをやめたい。

@watahani
Copy link
Member Author

サインイン アクティビティについては、Microsoft Graph SDK がレスポンスを独自のオブジェクトに変換するため、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 ライブラリを生で使って自前でコードを書いたほうが取り回しが楽そう。何か良い手があればコメントください。

@watahani
Copy link
Member Author

一応、生の JSON を取得するには Azure AD Graph SDK を使って、以下のようにするのが最も容易。ただしスロットリングのエラーハンドリングはおそらく実装されていないと思う。

(Get-AzureADAuditSignInLogs).ToJson()

@watahani watahani self-assigned this Aug 19, 2021
@watahani watahani added the help wanted Extra attention is needed label Aug 19, 2021
@watahani
Copy link
Member Author

#355 ADAL の非推奨に言及

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

1 participant