We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
while (true){ val (id , pw) = userInput() try { KotlinInside.createInstance( LoginUser(id.toString(), pw.toString()), DefaultHttpClient(okHttpClient = OkHttpClient.Builder().ignoreAllSSLErrors().build()), true ) print("\n") println("로그인성공") print("\n") break } catch (e: be.zvz.kotlininside.http.HttpException) { print("\n") println("\u001b[31m 로그인을 실패 했습니다 아이디랑 비번을 확인 해주세요. \u001b[0m") continue } }
라는 코드를 짰을때 유저가 한번 실패후 다시 로그인 하면 세션을 받아오지 못하는데 이럴경우엔 어떻게 해야 하나요?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
라는 코드를 짰을때
유저가 한번 실패후 다시 로그인 하면
세션을 받아오지 못하는데 이럴경우엔 어떻게 해야 하나요?
The text was updated successfully, but these errors were encountered: