Home > Blockchain >  What authentication to use for .Net application > linux/tikiwiki
What authentication to use for .Net application > linux/tikiwiki

Time:09-25

I need some advice on what authentication to use in the following scenario: I have a .Net winforms application, from within this application a user must be able to click a button, and go to a TikiWiki page on a linux server without having to login again.

The authentication does not have to be user based (for now). But simply a token that the client session is valid(im guessing here ;)) Can anyone advice on the type of authentication system best to use? Thanks in advance

CodePudding user response:

You can probably do what you need using Token Access if you don't need individual user accounts in Tiki, but just controls access to various resources.

If you do need your Windows users to have actual Tiki accounts you could try LDAP Authentication, but i believe there are restrictions on what Tiki supports (i've not ever had to set that up, but i believe others have).

Hope that gets you started?

  • Related