IVS sdk not returning channel and stream key #5635
Unanswered
Appdesigncompany
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hi @Appdesigncompany , I tried reproducing it on a nodeJS environment and Im able to retrieve the Can you please add this client log to see if the request sent back might be overwritten by RN? const client = new IvsClient({
region: "us-east-1",
});
client.middlewareStack.add(next => async (args) => {
console.log(args.request)
const response = await next(args);
console.log(response);
return next(args);
}, {step: 'finalizeRequest'})
// rest of your code... Thanks, @github-actions proposed-answer |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using expo and react native and no matter what i only reutrn the metadata parameter of the command output and channel and streamkey are always undefined. Which i need to be able to generate channels for users.
Beta Was this translation helpful? Give feedback.
All reactions