diff --git a/actions/index.js b/actions/index.js index 8734b0a6..962a5ae7 100644 --- a/actions/index.js +++ b/actions/index.js @@ -39,6 +39,14 @@ export const getSASToken = () => { "https://" + m_ResourceURI + "/" + m_Path + "/" ); + console.log("///////////////////////"); + console.log("WEBAPI_URL: " + WEBAPI_URL); + console.log("m_ResourceURI: " + m_ResourceURI); + console.log("m_Path: " + m_Path); + console.log("m_SasKey: " + m_SasKey); + console.log("m_SasKeyName: " + m_SasKeyName); + console.log("///////////////////////"); + var t0 = new Date(1970, 1, 1, 0, 0, 0, 0); var t1 = new Date(); var expireInSeconds = @@ -62,6 +70,9 @@ export const getSASToken = () => { "&skn=" + m_SasKeyName; + console.log("///////////////////////"); + console.log("token: " + token); + console.log("///////////////////////"); return token; };