Does Graph API support HTTP 2.0 ?

Yu, Miseon 5 Reputation points
2026-05-21T04:59:33.2266667+00:00

Does Graph API support HTTP 2.0 ?

It's not easy to find out the supported version of HTTP, in the documents.

Microsoft Security | Microsoft Graph
0 comments No comments

4 answers

Sort by: Most helpful
  1. Dennis Ameling 0 Reputation points
    2026-09-11T12:25:29.3866667+00:00

    They say it's supported but the reality is different. The Graph API always uses HTTP/1.1 even if the client supports HTTP/2:

    curl -sS -o /dev/null --http2 -v https://graph.microsoft.com/v1/me/messages 2>&1 | grep -i alpn
    * ALPN: curl offers h2,http/1.1
    * ALPN: server did not agree on a protocol. Uses default.
    

    Whereas e.g. Outlook does support it:

    curl -sS -o /dev/null --http2 -v https://outlook.cloud.microsoft 2>&1 | grep -i alpn
    * ALPN: curl offers h2,http/1.1
    * ALPN: server accepted h2
    

    Was this answer helpful?

    0 comments No comments

  2. priyanshi sharma 0 Reputation points
    2026-07-08T11:37:56.42+00:00

    Yes, Microsoft Graph API supports HTTP 2.0. When you connect through a modern browser or application, HTTP 2.0 is usually used automatically, helping improve speed and efficiency.

    Was this answer helpful?

    0 comments No comments

  3. Vasil Michev 127.8K Reputation points MVP Volunteer Moderator
    2026-05-21T05:06:09.49+00:00

    It does, for few years now. So do the corresponding SDKs, including the PowerShell SDK for Graph.

    Was this answer helpful?


  4. AI answer

    2026-05-21T04:59:38.73+00:00

    The available documentation in the provided context describes Microsoft Graph in terms of its REST API surface (HTTP methods, versions v1.0 and beta, request size limits, etc.), but does not state which HTTP protocol versions (for example, HTTP/1.1 vs. HTTP/2.0) are supported by the Microsoft Graph service.

    Because the supported HTTP protocol version for Microsoft Graph is not specified in the context, no statement can be made here about HTTP/2.0 support.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.