Login to Kite using Java

abhi7a
I am using following code in Java but I am getting error message

"
You need to upgrade your browser
You are using an older browser that is outdated. Please upgrade to one of the following to use Kite.
v31+
v35+
v7.1+
v27+
v11+
"


Code:

public class JA16 {
public static void main(String[] args) throws IOException, ParseException, AWTException, InterruptedException {
WebClient webClient = new WebClient();
WebClientOptions options = webClient.getOptions();

HtmlPage currentPage = webClient.getPage("https://kite.zerodha.com");

try {
Thread.sleep(4000);
} catch (InterruptedException ie) {
}
}
}


# Please help me in resolving issue.
Sign In or Register to comment.