I’ve been working on an interface in NodeRed…
Been able to get basic information using Rest commands,
I’ve got BUY and Sell orders working and I’m able to get all the accesstokens.
However getting the WebSocket live data feeds have been seemingly the last missing piece to my puzzle.
No matter what I try to subscribe to . the web socket only returns ‘o’ and never anything else.
Any assistance would be awesome. I’ve been working on this for the past few days with no luck.
Have you checked out the API docs or examples? They cover a lot of the initial pieces of getting connected and handling things like timeouts.
Ah yes, lots… that’s why I’m here now… I’ve run out of Ideas as to why no data returns in the feed.
The API docs are pretty straight forward. So I’m stumped.
Here are the flows that i have already…
the subscription payload looks like this.
msg.payload = JSON.stringify({
name: “md:subscribeQuote”,
body: {
symbol: “MESZ4”
}
});
return msg;
I’m already passing the accesstoken but nothing returns…
I’m wondering if there are additional requirements that I’m simply not seeing
ok, i was able to finally connect and get user sync data…
I’d be happy to share the information if someone else is interested.
Might as well post your fix in case others have suffering in the future