1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Chromeの最新バージョンを取得するAPI

Last updated at Posted at 2023-05-09

以下にアクセスするとChromeの最新バージョンが得られる。
(WindowsのStable版の例)
https://chromiumdash.appspot.com/fetch_releases?channel=Stable&platform=Windows&num=1

返り値サンプル(整形済み):

[
    {
        "channel":"Stable",
        "chromium_main_branch_position":1121455,
        "hashes":{
            "angle":"c2efe6fcdbc548c5ba6c1fa9c5415e256c7211ba",
            "dawn":"543ca1e4cd6474fe2772ad689bab7256a946cf04",
            "devtools":"e24710d614f3f16412444484e1f64b4439b965d8",
            "pdfium":"7c9b2b33ac5759b0443d8f6e01f07432ff034c12",
            "skia":"1195e70d671947af02a6a5b0ddc65806b9645252",
            "v8":"0e75d85d8e3467a536bca01d89d8a180a8bcffca",
            "webrtc":"f6ab0b438e22ea30db7ad3fbf9f870b0d4506235"
        },
        "milestone":113,
        "platform":"Windows",
        "previous_version":"113.0.5672.92",
        "time":1683578403731,
        "version":"113.0.5672.93"
    }
]

ドキュメントがあるかどうかは未調査なものの、恐らくversionの値が最新バージョンを指していると思われる。

以下の公式ブログの内容とも一致する。
https://chromereleases.googleblog.com/

参考

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?