コード例 #1
0
        private static void TestSafewalkClientExternalAuthentication(String username)
        {
            Console.WriteLine("External Authentication PROCESS : start");

            serverConnectivityHelper = new ServerConnectivityHelper(HOST, PORT, SET_BYPASS_SSL_CERTIFICATE);
            SafewalkAuthClient     client    = new SafewalkAuthClient(serverConnectivityHelper, AUTHENTICATION_API_ACCESS_TOKEN);
            AuthenticationResponse response1 = client.AuthenticateExternal(username);

            Console.WriteLine("External Authentication RESPONSE : " + response1);
            Console.WriteLine("External Authentication PROCESS : end");
        }