From e6908a2ee7b645517c062f2fd0419fcb3f4f976e Mon Sep 17 00:00:00 2001 From: José Bollo Date: Thu, 21 Nov 2019 15:31:32 +0100 Subject: afb-hreq: Handle access_token query parameter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As specified by OAuth2 protocols, the access token can be passed as a POST/GET parameter of name 'access_token'. Bug-AGL: SPEC-2968 Signed-off-by: José Bollo Change-Id: I0e02e6fd0d53dad6de994d4482350fe42ecfce48 --- test/AFB.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test/AFB.js') diff --git a/test/AFB.js b/test/AFB.js index 4c500b99..953fe96a 100644 --- a/test/AFB.js +++ b/test/AFB.js @@ -21,7 +21,10 @@ if (typeof base != "object") var initial = { base: base.base || "api", - token: initialtoken || base.token || URLSearchParams(window.location.search).get('token') || "HELLO", + token: initialtoken || base.token + || URLSearchParams(window.location.search).get('access_token') + || URLSearchParams(window.location.search).get('token') + || "HELLO", host: base.host || window.location.host, url: base.url || undefined }; -- cgit 1.2.3-korg