.Net API Client new Ticker version not able to login

satveersm
satveersm edited August 2017 in .Net API client
Guys,
I was using older .Net Client version and i want to update new client feature to use Ticker in place of KiteStream.
// Initialize key and secret of your app
static string MyAPIKey = "xxxxx-my key";
static string MySecret = "xxxxxx-my secret";
static string MyUserId = "ZL0-xxx;
During Init session it ask me request token who is going to provide it??

In older client it open Login page but here it not happening.

Anyone using client for c# with ticket let me know

Drop me a mail if someone can help me here at [email protected]
  • tonystark
    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.

    To make this process easier you can either automatically open the URL in the browser (if you are creating a console application) or use a Web Browser component (not the built-in Web Browser component) if you have a GUI application. You can also refer to this comment.

    You can read in detail about login flow here.
Sign In or Register to comment.