06-19-2017 02:56 PM
Out of curiosity, who has built their own Snaps (SnapLogic Employees excluded)?
What type of Snap did you build?
06-21-2017 10:18 AM
I’ve built three snaps that fit in the flow and transform categories.
06-23-2017 07:26 AM
I’ve built a simple Snap backed by an account type which retrieves an authentication token when provided with a username/password
04-01-2019 06:02 AM
Hi Omair,
I am evaluating SnapLogic and I am new to this platform. I developed a simple snap where I hardcoded username/password inside a JSON Generator snap and pass them to the REST Post snap to get a token from my API. Any suggestion how can I store username/password somewhere, and not hard code them tin my snap. What is a proper way of doing it?
Thank you.
04-02-2019 12:35 PM
I’ve wondered this before too… Almost like we need an “account” type of object, but just generically for storing some value in a secure way for use by a pipeline. What I have done before is take my values and manually encrypt them one time using the “Encrypt Field” snap and a Passphrase type of account, then hardcode that encrypted text in the pipeline, and then decrypt it at runtime with the “Decrypt Field” snap for use downstream.
04-03-2019 11:43 AM
Hi christwr, thank you for replying to my post. I found and downloaded a pipeline that is doing encrypt/decrypt, work in progress. Thanks.