I'm wondering how can I make dynamic RPC call in DeepStream? For example, when a subscriber call a url http://localhost/myRPCApp/123 , here 123 could be anything. So how can I register a provider method?
Eg:
client.rpc.make(<MY-DYNAMIC-URL>, { patientId: 2 }, (error, result) =>{
console.log(error, result);
})
On Provider:
client.rpc.provide(<MY-DYNAMIC-URL>, (data, response) => {
response.send('Hey there!');
})
How can I achieve this?
You can achieve a dynamic URLs like this:
1) server.js (Used: NodeJS)
2) client.js (Used: microjs)
now go to