microsoftgraph / microsoftgraph/msgraph-beta-sdk-python
API regression: BadRequest error on /beta/copilot aiInsights endpoint after 2025/09/22
オープン
まだ誰も着手していません。
status:waiting-for-triage
- 主要言語
- Python
- スター
- 44
- フォーク
- 16
- 平均マージ
- 20時間 39分
- マージ済み PR(30日)
- 3
説明
Problem
The following API endpoint stopped working as expected after 2025/09/22:
https://graph.microsoft.com/beta/copilot/users/:user_id/onlineMeetings/:meeting_id/aiInsights
After 2025/09/22, requests now return:
{
"error": {
"code": "BadRequest",
"message": "Value cannot be null. (Parameter 's')",
"innerError": {
"date": "2025-09-25T02:21:05",
"request-id": "8e2a3b90-24ac-4a05-ad77-50d3ade65aba",
"client-request-id": "8e2a3b90-24ac-4a05-ad77-50d3ade65aba"
}
}
}
# My code snippet:
graph_client = get_graph_client_beta(auth_code)
me = await graph_client.me().get()
user_id = me.id
graph_client.request_adapter.base_url = "https://graph.microsoft.com/beta/copilot"
query_params = AiInsightsRequestBuilder.AiInsightsRequestBuilderGetQueryParameters(
filter=f"contentCorrelationId eq '{correlation_id}'"
)
request_configuration = RequestConfiguration(query_parameters=query_params)
result = await graph_client.users.by_user_id(user_id).online_meetings. \
by_online_meeting_id(meeting_id) \
.ai_insights. \
get(request_configuration=request_configuration)
Impact
- This appears to be an API issue rather than an SDK bug, but it directly affects SDK behavior.
- The same code worked until 2025/09/22, so this looks like a regression in the API backend.
Request
- If this is an expected change, please update the documentation and communicate any required migration steps for SDK usage.
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず、示されている Python SDK コードとフィルターを使って、ベータ版エンドポイント /copilot/users/:user_id/onlineMeetings/:meeting_id/aiInsights に対するリクエストを再現します。可能であれば 2025/09/22 より前と後の挙動を比較し、そのうえで API コントラクトが変更されたか、移行ドキュメントが必要かを判断します。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- api
- issue の種類
- バグ
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- 説明が足りない
- 初心者へのやさしさ
- 20/100