You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
asyncfunctioncreateRoom(){constexp=Math.round(Date.now()/1000)+60*30;constoptions={properties: {exp: exp,},};letresponse=awaitfetch(newRoomEndpoint,{method: "POST",body: JSON.stringify(options),mode: 'cors',}),room=awaitresponse.json();returnroom;// Comment out the above and uncomment the below, using your own URLreturn{url: "https://occursum.daily.co/occursum"};}