We are developing a service using the Google Meet API. I would like to enable anyone with the Google Meet link to join the meeting, even if they are not logged into Google.
How should I configure the options to achieve this?
Or, what is the best approach to allow people to join the Google Meet space?
Below is the code I tried ( but failed )
<code>async function createSpace() {
// ==>??? Set AccessType in here?
const request = {
config: {
accessType: "OPEN",
entryPointAccess: "ALL",
},
};
const response = await meetClient.createSpace(request);
console.log(response);
}
</code>
<code>async function createSpace() {
// ==>??? Set AccessType in here?
const request = {
config: {
accessType: "OPEN",
entryPointAccess: "ALL",
},
};
const response = await meetClient.createSpace(request);
console.log(response);
}
</code>
async function createSpace() {
// ==>??? Set AccessType in here?
const request = {
config: {
accessType: "OPEN",
entryPointAccess: "ALL",
},
};
const response = await meetClient.createSpace(request);
console.log(response);
}
New contributor
LEO SMITH is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.