Dan Moore

Results 150 issues of Dan Moore

As of 1.42, you can force users to enable MFA. This can be done at the tenant or application level (latter requires the Enterprise plan). We don't document how that...

Sometimes we do this, sometimes we don't. See https://fusionauth.io/docs/v1/tech/events-webhooks/events/jwt-refresh#jwt-refresh for an example where we do not.

Per discussion in slack, when someone goes to https://fusionauth.io/docs/quickstarts/ they may bounce because they don't see their technology listed there. We should design an email signup form that says: "If...

https://fusionauth.io/docs/v1/tech/apis/authentication has an old screenshot and is missing the IP ACLs section in the image and on the form fields doc.

You can 'merge' docker compose files. So if we had a base docker compose file and then wanted to add kickstart and mailcatcher, we could have these three files: *...

Need to test and update the value to include later version of .NET core. https://docs.microsoft.com/en-us/dotnet/standard/frameworks

Per this forum comment, this library doesn't work with older versions of ASP.NET. https://fusionauth.io/community/forum/topic/168/fusionauth-with-asp-net-framework-4-5-2?_=1594048147833 Here's a list of ASP.NET versions: https://en.wikipedia.org/wiki/ASP.NET#Versions

Here's the relevant section of the example code https://github.com/FusionAuth/fusionauth-netcore-client/blob/master/fusionauth-netcore-client-test/fusionauth-netcore-client-test/test/io/fusionauth/Example.cs ``` public User GetUserByEmail(string email) { var response = client.RetrieveUserByEmail("[email protected]"); if (response.WasSuccessful()) { var user = response.successResponse.user; return user; } if...

In this file: https://github.com/FusionAuth/fusionauth-netcore-client/blob/master/fusionauth-netcore-client-test/fusionauth-netcore-client-test/test/io/fusionauth/Example.cs The `apiKey` is `6b87a398-39f2-4692-927b-13188a81a9a3`. This doesn't look like any of the API keys I've seen from FusionAuth 1.15, maybe it's an older style? I found it...