Hi All, I faced the same issue with Java.
My solution for this issue is adding all request parameters to URL string directly.
I am not sure why i get 403 if i set request properties through API call..Below is my URL.
String sha256hex = sha256Strin…
Hi RH1558, Isue is resolved by directly creating URL string instead of setting request properties.
Ex:
URL url = new URL("https://api.kite.trade/session/token?api_key=&request_token="+request_token+"&checksum="+sha256hex);
…
Thanks Kailash, I am getting the request_token manually from browser.
I want to understand how long this token will be useful?
Is there any timeout or will it get invalidated once we close browser session?
One suggestion, please post examples some …