microsoftgraph / microsoftgraph/msgraph-beta-sdk-python

API regression: BadRequest error on /beta/copilot aiInsights endpoint after 2025/09/22

Đang mở
#953 0 bình luận 0 reaction 0 người được giao Xem trên GitHub

Chưa có ai nhận issue này.

status:waiting-for-triage
Ngôn ngữ chính
Python
Star
44
Fork
16
Merge trung bình
20 giờ 39 phút
Pull request đã merge (30 ngày)
3

Mô tả

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.

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Hướng nghiên cứu

Bắt đầu bằng cách tái hiện request tới beta endpoint /copilot/users/:user_id/onlineMeetings/:meeting_id/aiInsights bằng đoạn mã Python SDK và bộ lọc được hiển thị. Nếu có thể, hãy so sánh hành vi trước và sau ngày 22/09/2025, sau đó xác định liệu API contract có thay đổi hay không và liệu có cần tài liệu migration hay không.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Đánh giá

Công nghệ
python
Lĩnh vực
api
Loại issue
Lỗi
Độ khó
5/5
Thời gian dự kiến
Hơn một tuần
Mức độ hoạt động
Đình trệ
Độ rõ ràng
Cần làm rõ
Mức phù hợp với người mới
20/100

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.