• Home
  • Categories
  • Recent
  • Popular
  • Pricing
  • Contact us
  • Docs
  • Login
FusionAuth
  • Home
  • Categories
  • Recent
  • Popular
  • Pricing
  • Contact us
  • Docs
  • Login
  1. Home
  2. daenerystargaryen56
  3. Posts
D
  • Profile
  • Following 0
  • Followers 0
  • Topics 1
  • Posts 4
  • Best 1
  • Controversial 0
  • Groups 0

Posts made by daenerystargaryen56

  • RE: Node Version Compatibility

    @alex-patterson said in Node Version Compatibility:

    @max-0 our SDK package.json can be found here https://github.com/FusionAuth/fusionauth-typescript-client/blob/master/package.json geometry dash scratch

    In reality, we don't impose any limitations on a client, if something doesn't work well with your setup you can always exit from the SDK strategy and call the API's directly.

    Great! This is what I'm looking for

    posted in General Discussion
    D
    daenerystargaryen56
    22 Feb 2024, 09:03
  • RE: How to distinguish between Google Logins and traditional email+pwd logins?

    @mark-robustelli said in How to distinguish between Google Logins and traditional email+pwd logins?:

    FusionAuth does have a few "reconcile" lambda's. This might be what you are looking for.
    https://fusionauth.io/docs/extend/code/lambdas/google-reconcile.

    This is what I'm looking for. Thanks!

    posted in Q&A
    D
    daenerystargaryen56
    31 Jan 2024, 23:16
  • RE: Specify default value for form field?

    I think you can try using custom JavaScript code. To set a default value for a form field, you can utilize JavaScript to manipulate the field's value after the form is loaded. Here's an example of how you can accomplish this:

    Add an HTML class or ID to the form field you want to set a default value for. For example, let's say the class is "default-value-field".

    In your FusionAuth theme or custom HTML file, add a script tag that runs after the form has loaded:

    html
    <script>
        document.addEventListener("DOMContentLoaded", function() {
            // Find the form field by class or ID
            var defaultField = document.querySelector(".default-value-field");
            
            // Set the default value
            defaultField.value = "Your default value";
        });
    </script>
    

    This script listens for the "DOMContentLoaded" event, which occurs when the page is fully loaded. It then selects the form field using the class or ID you specified and sets its value to the desired default value.

    posted in Q&A
    D
    daenerystargaryen56
    31 Jan 2024, 05:08
  • OpenID Connect & FusionAuth with NextCloud

    Hello,
    I'm trying to configure FusionAuth with the custom social sign in plugin in NextCloud, however when I click the "Sign in with SSO" button it takes me to the FusionAuth login page but then redirects me back to the NextCloud sign in page without logging me in to NextCloud. (I get logged into FusionAuth but not NextCloud).

    I cannot find any documentation anywhere so I am quite lost, I have the following configuration options setup in NextCloud from FusionAuth:

    NextCloud Setting -> FusionAuth Value

    Authorize Url -> OAuth IdP login URL

    Token Url -> Token endpoint

    User info URL -> Userinfo endpoint

    client ID -> Client Id

    Client Secret -> Client secret

    Scope: openid

    Any help is appreciated.

    posted in General Discussion
    D
    daenerystargaryen56
    31 Jan 2024, 05:06