Hi @RamakrishnaG, You need to make a post request for the access token and request token, api_key and api_secret must be hashed while sending as params. Please take a look at python code to know more about it.
Thanks Sujith for the response. I am using checksum as the hashed value of api_key, request_token,api_secret in the url. I did not get any issues for these values except access_key. I am a learner on this technology, would you mind mentioning the syntax for POST request. Thanks for the help.
You need to make a post request for the access token and request token, api_key and api_secret must be hashed while sending as params. Please take a look at python code to know more about it.
I am using checksum as the hashed value of api_key, request_token,api_secret in the url. I did not get any issues for these values except access_key.
I am a learner on this technology, would you mind mentioning the syntax for POST request. Thanks for the help.
access_token_link= "https://api.kite.trade/session/token?api_key="+api_key+"&request_token="+request_token+"&checksum="+checksum
result=requests.post(access_token_link).content.decode()
print (result)