I am getting below exception while creating access token, I have checked kite connect, my app is active and I am passing the right api_key and api_secret, request help
TokenException: Token is invalid or has expired.
I am using the code
# -*- coding: utf-8 -*- """ Connecting to KiteConnect API
from kiteconnect import KiteConnect import pandas as pd
api_key = "actual api key" api_secret = "actual api secret" kite = KiteConnect(api_key=api_key) print(kite.login_url()) #use this url to manually login and authorize yourself
#generate trading session request_token = "Your Request Token" #Extract request token from the redirect url obtained after you authorize yourself by loggin in data = kite.generate_session(request_token, api_secret=api_secret)