@stackfactor/client-api 1.1.95 → 1.1.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/users.js +3 -1
- package/package.json +1 -1
package/lib/users.js
CHANGED
|
@@ -403,12 +403,14 @@ const login = (email, password) => {
|
|
|
403
403
|
/**
|
|
404
404
|
* Login callback after authentication to exchange the code token for authentication and refresh tokens
|
|
405
405
|
* @param {String} code
|
|
406
|
+
* @param {String} redirectUri
|
|
406
407
|
* @returns {Promise}
|
|
407
408
|
*/
|
|
408
|
-
const loginExchangeKeys = (code) => {
|
|
409
|
+
const loginExchangeKeys = (code, redirectUri) => {
|
|
409
410
|
return new Promise(function (resolve, reject) {
|
|
410
411
|
const requestData = {
|
|
411
412
|
code: code,
|
|
413
|
+
redirectUri: redirectUri,
|
|
412
414
|
};
|
|
413
415
|
let request = client.post("api/v1/auth/loginexchangekeys", requestData);
|
|
414
416
|
request
|