Hi Team,
We are developing a intranet app that uses the octopus API to create tasks to recycle IIS application pools on windows servers. It will be used by multiple users and we want to keep on check on who can login to the application. Creating a new user and password and using a DB to store them seems too extensive for an intranet application.
Since anything that is done on the UI can be done using the API, we decided to use the “Login with windows” option to authenticate users to our application. We are not able to get the below code to work. The “Get” command is throwing an error saying the type arguments cannot be inferred.
var repo = new OctopusRepository(new OctopusServerEndpoint("[octopus url}"));
repo.Client.Get("/integrated-challenge");
I am using .net client. Any help is appreciated.
Thanks,
Arun