I am using a kickstart.json file to setup FusionAuth in developer environments. Everything is automated except I still need to manually go and get the client secret from the fusion auth instance. Is there anyway I can predefine the client secret in the kickstart file so I can pre-configure it in my app?
Can you set an Application's Client Secret using a kickstart file? FusionAuth
115 Views Asked by Moffen At
1
There are 1 best solutions below
Related Questions in FUSIONAUTH
- Spring cloud gateway with fusionauth custom tenant
- Swagger change UI parameters using Fastendpoints
- FusionAuth support for signed and encrypted assertions
- Does FusionAuth use a random salt for each password in Salted PBKDF2 HMAC SHA-256?
- Fusion Auth is not redirecting to the Expo App oauth callback route after authorization
- Groups claim missing from JWT generated by fusionauth while setting up sso with fusionauth
- integrating fusionauth and django-rest-framework
- How to create a "permanent key" to authenticate a user on MY API using FusionAuth?
- How can I expose FusionAuth on Ubuntu + Apache to connect from browser?
- FusionAuth - 401 after passing valid token in
- Significance of setRelaxVerificationKeyValidation() in JwtConsumerBuilder() while validating the JWT
- Difficulty Mapping FusionAuth Errors to TypeScript due to changing nested object names
- Don't understand how to logout of FusionAuth from Django Application
- Can you set an Application's Client Secret using a kickstart file? FusionAuth
- How to get Docker FusionAuth to work - getting SSL error
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
you should absolutely be able to set the client secret from kickstart.json. Any API call should work from within Kickstart.
https://fusionauth.io/docs/v1/tech/apis/applications#create-an-application indicates you can
POSTan application including the client secret.So a kickstart file like this should work:
I haven't tested that, but don't see any reason why it would not work. (Note that 1.37, the most recent version, has an issue with kickstart as documented here: https://github.com/FusionAuth/fusionauth-issues/issues/1816 but that should be fixed soon.)
If this doesn't work for you, please share the error message and a scrubbed kickstart file.