- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2024 11:45 AM
Anyone know the replacement for GlideEncryper's "reencryptParamForAutomation" method since its being removed?
I found a reference to
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2024 07:01 PM
Hi @DrewW
You can try the approach suggested in the below post via Automation API. I tested via Background Script and it is available in global as well as in scoped app.
Thanks and Regards
Amit Verma
Amit Verma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2024 12:38 PM - edited 11-19-2024 12:39 PM
Thanks I missed that one.
So this is the replacement for GlideEncryper's "reencryptParamForAutomation" method
var sncPW = new global.ScopedEncrypter().decrypt(<PASSWORD2 FIELD VALUE>);
var automation_api = new sn_automation.AutomationAPI();
var pwToPassToTheMIDServer = "" + automation_api.encrypt(sncPW);
Would be nice if SN would add a method to the ScopedEncrypter script include.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2024 07:01 PM
Hi @DrewW
You can try the approach suggested in the below post via Automation API. I tested via Background Script and it is available in global as well as in scoped app.
Thanks and Regards
Amit Verma
Amit Verma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2024 12:38 PM - edited 11-19-2024 12:39 PM
Thanks I missed that one.
So this is the replacement for GlideEncryper's "reencryptParamForAutomation" method
var sncPW = new global.ScopedEncrypter().decrypt(<PASSWORD2 FIELD VALUE>);
var automation_api = new sn_automation.AutomationAPI();
var pwToPassToTheMIDServer = "" + automation_api.encrypt(sncPW);
Would be nice if SN would add a method to the ScopedEncrypter script include.
