Create Room programmatically

Hi @khalidmnabil,

This isn’t the best formulated question, take a look at

How to ask a good question

for tips for next time

Are you just missing "Bearer" from your "Authorization" header

You currently have

headers={"Authorization": "<Token>"}

But the docs suggest it should be

headers={"Authorization": "Bearer <Token>"}

You may also want to change your token since you’ve now made it public

1 Like