It looks like you're new here. If you want to get involved, click one of these buttons!
// 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??
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.