How to create shareable preset
TheMLEngineer
Registered Posts: 25 ✭
I want to create a preset that I can use to authenticate a Plugin API in dataiku. How do are go about this? Many users will be authenticating the Plugin API and I will like to create a unique preset for each user. Can I wrap api-key around this preset?
Answers
-
Turribeach Dataiku DSS Core Designer, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2023 Posts: 2,160 Neuron
Here is how you create presets:
I am not sure if plugins run under the identify of the user, but you should be able to quickly test:
import dataiku client = dataiku.api_client() username = client.get_auth_info()['authIdentifier']
Let us know how it goes.