Navigation

    SmartAPI Forum
    • Register
    • Login
    • Search
    • Categories
    • Popular
    • Groups
    • FAQs
    • API Docs
    1. Home
    2. Manish Choudhary
    M
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Manish Choudhary

    @Manish Choudhary

    1
    Reputation
    2
    Posts
    1
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    Manish Choudhary Follow

    Best posts made by Manish Choudhary

    • Not getting connected to Websocket2.0

      from SmartApi.smartConnect import SmartConnect
      from SmartApi.smartWebSocketV2 import SmartWebSocketV2
      from pyotp import TOTP
      import login as l

      obj=SmartConnect(api_key=l.api_key)
      data=obj.generateSession(clientCode=l.user_name,password=l.password,totp=TOTP(l.token).now())
      Feed_token=obj.getfeedToken()
      Auth_token=data['data']['jwtToken']
      prof=obj.getProfile(data['data']['refreshToken'])

      sws=SmartWebSocketV2(auth_token=Auth_token,api_key=l.api_key,client_code=l.user_name,feed_token=Feed_token)

      def on_open(wsapp):
      print("open")
      sws.subscribe(correlation_id="stream_1",mode=3,token_list=[{"exchangeType": 1, "tokens": "1594"}])

      def on_data(wsapp,message):
      print("Tick : {}".format(message))

      def on_error(wsapp,error):
      print(error)

      sws.on_open=on_open
      sws.on_data=on_data
      sws.on_error=on_error

      sws.connect()

      -----------------------CODE------------------------------
      On open
      [E 240129 15:00:23 smartWebSocketV2:218] Error occurred during subscribe: 'str' object has no attribute 'extend'
      [W 240129 15:00:23 smartWebSocketV2:326] Attempting to resubscribe/reconnect (Attempt 1)...
      On open
      [E 240129 15:00:44 smartWebSocketV2:218] Error occurred during subscribe: 'str' object has no attribute 'extend'

      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.

      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.

      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.

      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.

      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.

      posted in General Discussion
      M
      Manish Choudhary

    Latest posts made by Manish Choudhary

    • Connection problem with websocket2.0
      from SmartApi.smartConnect import SmartConnect
      from SmartApi.smartWebSocketV2 import SmartWebSocketV2
      from pyotp import TOTP
      import login as l 
      
      obj=SmartConnect(api_key=l.api_key)
      data=obj.generateSession(clientCode=l.user_name,password=l.password,totp=TOTP(l.token).now())
      Feed_token=obj.getfeedToken()
      Auth_token=data['data']['jwtToken']
      prof=obj.getProfile(data['data']['refreshToken'])
      
      sws=SmartWebSocketV2(auth_token=Auth_token,api_key=l.api_key,client_code=l.user_name,feed_token=Feed_token)
      
      def on_open(wsapp):
          print("open")
          sws.subscribe(correlation_id="stream_1",mode=3,token_list=[{"exchangeType": 1, "tokens": "1594"}])
      
      def on_data(wsapp,message):
          print("Tick : {}".format(message))
      
      def on_error(wsapp,error):
          print(error)  
      
      sws.on_open=on_open
      sws.on_data=on_data
      sws.on_error=on_error
      
      sws.connect()
      

      ------------------------------output---------------------------------

      On open
      [E 240129 15:00:23 smartWebSocketV2:218] Error occurred during subscribe: 'str' object has no attribute 'extend'
      [W 240129 15:00:23 smartWebSocketV2:326] Attempting to resubscribe/reconnect (Attempt 1)...
      On open
      [E 240129 15:00:44 smartWebSocketV2:218] Error occurred during subscribe: 'str' object has no attribute 'extend'
      
      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.
      
      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.
      
      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.
      
      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.
      
      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.
      
      posted in Python SDK
      M
      Manish Choudhary
    • Not getting connected to Websocket2.0

      from SmartApi.smartConnect import SmartConnect
      from SmartApi.smartWebSocketV2 import SmartWebSocketV2
      from pyotp import TOTP
      import login as l

      obj=SmartConnect(api_key=l.api_key)
      data=obj.generateSession(clientCode=l.user_name,password=l.password,totp=TOTP(l.token).now())
      Feed_token=obj.getfeedToken()
      Auth_token=data['data']['jwtToken']
      prof=obj.getProfile(data['data']['refreshToken'])

      sws=SmartWebSocketV2(auth_token=Auth_token,api_key=l.api_key,client_code=l.user_name,feed_token=Feed_token)

      def on_open(wsapp):
      print("open")
      sws.subscribe(correlation_id="stream_1",mode=3,token_list=[{"exchangeType": 1, "tokens": "1594"}])

      def on_data(wsapp,message):
      print("Tick : {}".format(message))

      def on_error(wsapp,error):
      print(error)

      sws.on_open=on_open
      sws.on_data=on_data
      sws.on_error=on_error

      sws.connect()

      -----------------------CODE------------------------------
      On open
      [E 240129 15:00:23 smartWebSocketV2:218] Error occurred during subscribe: 'str' object has no attribute 'extend'
      [W 240129 15:00:23 smartWebSocketV2:326] Attempting to resubscribe/reconnect (Attempt 1)...
      On open
      [E 240129 15:00:44 smartWebSocketV2:218] Error occurred during subscribe: 'str' object has no attribute 'extend'

      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.

      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.

      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.

      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.

      Connection closed
      [W 240129 15:00:45 smartWebSocketV2:350] Connection closed due to max retry attempts reached.

      posted in General Discussion
      M
      Manish Choudhary