Hi @pannet1,
Which ticker.js file are you using? It seems you are using the one from kiteconnectjs repository. Please use the ticker.js from the link I shared. It is modified for working in pure js environment.
Hi @satveersm,
You have to login via the URL you get from kite.GetLoginURL(); call. You can implement this in different ways. Recommended method is to open this manually in the browser and copy and paste the request token into the command prompt.
…
Hi @arjunender,
Unfortunately .Net WebBrowser component uses Internet Explorer 6 ActiveX component behind the scenes. This is a very old and deprecated tech. I suggest you open the link directly in your default browser like:
Process.Start("https://…
Hi @imlokesh,
We have fixed this issue. If you are using NuGet, check for updates in the package manager. Or if you are using the DLL file from the GitHub please download the latest one from there and reference it in your project.
"Change" field i…
Hi @arjunender,
It seems there is some issue in your authentication process. Try wrapping your code inside a try catch block like this to get the error information:
try
{
User user = kite.RequestAccessToken("", "");
}
catch (ParseException e)
{…