Do you have a timeline for C# .net 6 support?
# support-questions-legacy
s
Do you have a timeline for C# .net 6 support?
r
hey!
not yet. But probably sometime next year
that being said, you can still use us if you are open to running a separate node / golang or python process that integrates with our SDK
s
If I understand it correctly does the core still require a java runtime?
r
yea. But we bundle all that into the binary / docker image
so you don't need to explicitly setup java
essentially setup a node / golang / python server which integrates our backend SDK containing your config. This would talk to the supertokens core. The frontend would call this node / python / golang process for auth related APIs. Post login, the frontend gets a JWT which you can send to your c# backend.
s
Thanks, this might already be answered in your docs, but can it do session handling in a more traditional sense where you have a session key where the session values are not included in the token, but only available on the backend? I'm not sure we are allowed to use a system where the session values are also included in the "frontend" as we have critical data in the session.
r
yea that is possible, for this, you would need to setup the node process on a different sub domain or a different path as the c# process - so that cookies can be attached in a way that they get sent to the c# backend as well. When the cookies are sent to c#, then you can use this package to verify the session: https://github.com/supertokens/supertokens-dotnet-salad (community maintained package for session recipe)
s
Thanks!
5 Views