From a200f6060bae6168531bd976a51bb206e0d82186 Mon Sep 17 00:00:00 2001 From: bjornoleh <63544115+bjornoleh@users.noreply.github.com> Date: Sun, 13 Aug 2023 22:24:56 +0200 Subject: [PATCH] Use shareous1 for EU Dexcom accounts. The current docs of NS dev says to use shareous2, which does not work. --- README.md | 2 +- lib/sources/dexcomshare.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0a097c8..f5d1cba 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ To synchronize from Dexcom Share use the following variables. Optional, `CONNECT_SHARE_REGION` and `CONNECT_SHARE_SERVER` do the same thing, only specify one. * `CONNECT_SHARE_REGION=` `ous` or `us`. `us` is the default if nothing is provided. Selecting `us` sets `CONNECT_SHARE_SERVER` to `share2.dexcom.com`. - Selecting `ous` here sets `CONNECT_SHARE_SERVER` to `shareous2.dexcom.com`. + Selecting `ous` here sets `CONNECT_SHARE_SERVER` to `shareous1.dexcom.com`. * `CONNECT_SHARE_SERVER=` set the server domain to use. diff --git a/lib/sources/dexcomshare.js b/lib/sources/dexcomshare.js index e1ca259..768283a 100644 --- a/lib/sources/dexcomshare.js +++ b/lib/sources/dexcomshare.js @@ -6,7 +6,7 @@ var software = require('../../package.json'); var user_agent_string = [software.name, `${software.name}@${software.version}`, '"Dexcom Share"', software.homepage].join(', '); var _known_servers = { - ous: 'shareous2.dexcom.com', + ous: 'shareous1.dexcom.com', us: 'share2.dexcom.com' }