fusionauth-netcore-client icon indicating copy to clipboard operation
fusionauth-netcore-client copied to clipboard

The .NET Core client for FusionAuth

Results 25 fusionauth-netcore-client issues
Sort by recently updated
recently updated
newest added

Do you plan to add [XML comments](https://docs.microsoft.com/en-us/dotnet/csharp/codedoc) to public classes, interfaces, methods, properties, etc.?

Do you have any plans refactoring client with C# 9 nullable reference types?

Hi, I'm having an issue Patching a Registration. `{ "registration":{ "applicationId": "9d830621-2853-404f-9e11-47167fb643cf", "data": { "MMConnector" : { "value1" : "abc", "value2" : "test" } } } }` I'm using the...

Re: https://github.com/FusionAuth/fusionauth-client-builder/pull/24#issuecomment-724781327.

It's very clear you guys are Java developers. Lowercase properties, reverse-domain namespaces. To a .Net developer, this feels really gross to work with. My recommendations are: - Namespace should be...

Hello, I'm using FusionAuth to securize my application but I have a problem when registering a user. When I'm registering a user I'm generating a secret through the API and...

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

I'm trying to call `IFusionAuthAsyncClient.SearchUsersByIdsAsync(List ids)` but if say i give the id's a list containing: ["1a4a9247-2b9d-45d2-ae1e-4714756b5a58","5a1505df-677e-44e3-9c09-d858087eac7b"] This results in an exception: ``` Newtonsoft.Json.JsonReaderException: Unexpected character encountered while parsing value:

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...