Is there any way to directly get order updates postback on java client along with the postback url ? i understand that we might get this in Kite 3.0 on web sockets. ANything for now before kite 3.0 is launched ?
But, my query is if i want order updates directly in my java program, can we do that ? In documentation, it is mentioned that postback has to be https. So, presently, i m getting postback on my website at https url.
I want order updates in my java program. Something like ticks.
You can set postback URL on your app details page and listen to post requests at that endpoint.
But, my query is if i want order updates directly in my java program, can we do that ?
In documentation, it is mentioned that postback has to be https. So, presently, i m getting postback on my website at https url.
I want order updates in my java program. Something like ticks.
Once you get a postback on your server, you need to figure out a way to push it to your Java client.
May be you can implement polling mechanism in your client or use websocket, wherein server will send some data to your client.