Nat
02/03/2023, 2:55 PMbattk
02/03/2023, 3:17 PMNat
02/03/2023, 3:26 PMconst stURL = '*insert valid URL here*'
const stSecureClientSecret = https.createSecureString({
input: '{custsecret_fp}'
});
const objResponse = <http://https.post|https.post>({
url: stURL + '&client_id=' + stSecureClientSecret
body: null
});
and
const stURL = '*insert valid URL here*'
const stSecureURL = https.createSecureString({
input: stURL + '&client_id={custsecret_fp}'
});
const objResponse = <http://https.post|https.post>({
url: stSecureURL
body: null
});
battk
02/03/2023, 3:38 PMbattk
02/03/2023, 3:39 PMbattk
02/03/2023, 3:40 PM<https://www.httpbin.org/post>?
and log the responseNat
02/03/2023, 3:41 PMbattk
02/03/2023, 3:42 PMNat
02/03/2023, 3:54 PM