i have developed video call app with heroku and peer js. I have some problem with return data of heroku app i want some optional to be return from heroku app, but its only return this data
{
"msg": "Success",
"users": [
"shazli"
]
}
can i can get any optional data when heroku called?
here is my code
to create peer here is my code i have add meta data here, i need to return this data with use info, which heroku return
peer = new Peer(myPeerID, { host: PEER_SERVER, port: PORT, path: '/', secure: true, metadata:"fwefew" });
and this is my code which is fetching online users, here i need meta data which i have added when created peer
i have developed video call app with heroku and peer js. I have some problem with return data of heroku app i want some optional to be return from heroku app, but its only return this data
can i can get any optional data when heroku called?
here is my code
to create peer here is my code i have add meta data here, i need to return this data with use info, which heroku return
peer = new Peer(myPeerID, { host: PEER_SERVER, port: PORT, path: '/', secure: true, metadata:"fwefew" });
and this is my code which is fetching online users, here i need meta data which i have added when created peer