From fb3afe438a59f7ba335dadc73bdec8b4cb26ab14 Mon Sep 17 00:00:00 2001 From: Melvin Williams Date: Sun, 14 Jun 2020 15:48:31 +0200 Subject: [PATCH 1/2] #825: Wrong function name in refresh token documentation --- docs-src/token-refresh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-src/token-refresh.md b/docs-src/token-refresh.md index 910fe517..f5709ad6 100644 --- a/docs-src/token-refresh.md +++ b/docs-src/token-refresh.md @@ -7,7 +7,7 @@ Please also note, that you have to request the ``offline_access`` scope to get a To refresh your token, just call the ``refresh`` method: ```typescript -this.oauthService.refresh(); +this.oauthService.refreshToken(); ``` From 38c7c3fdc4ea82cbea7169fc5353b64fe4c08327 Mon Sep 17 00:00:00 2001 From: Melvin Williams Date: Sun, 14 Jun 2020 15:48:58 +0200 Subject: [PATCH 2/2] #825: Wrong function name in refresh token documentation --- docs-src/token-refresh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-src/token-refresh.md b/docs-src/token-refresh.md index f5709ad6..7a4e93dd 100644 --- a/docs-src/token-refresh.md +++ b/docs-src/token-refresh.md @@ -4,7 +4,7 @@ When using code flow, you can get an ``refresh_token``. While the original stand Please also note, that you have to request the ``offline_access`` scope to get an refresh token. -To refresh your token, just call the ``refresh`` method: +To refresh your token, just call the ``refreshToken`` method: ```typescript this.oauthService.refreshToken();