From 93b51b266cb0fea68287a3ca6cddd0e7f4cbf22d Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Tue, 25 Aug 2020 11:27:57 +0100 Subject: [PATCH] fix http method regression (#6066) --- lib/core/services/oauth2.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/services/oauth2.service.ts b/lib/core/services/oauth2.service.ts index 814f68bd1a..668b6b0343 100644 --- a/lib/core/services/oauth2.service.ts +++ b/lib/core/services/oauth2.service.ts @@ -71,7 +71,7 @@ export class OAuth2Service { post(opts: OAuth2RequestParams): Observable { return this.request({ ...opts, - httpMethod: 'PUT' + httpMethod: 'POST' }); }