-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Labels
size: sPull request size is small.Pull request size is small.type: questionRequest for information or clarification. Not an issue.Request for information or clarification. Not an issue.
Description
const calendar = gapi.calendar({ version: "v3" });
await calendar.channels.stop({
requestBody: {
id: channelId,
resourceId,
},
});Or do I have to...
const calendar = gapi.calendar({ version: "v3", auth });
await calendar.channels.stop({
requestBody: {
id: channelId,
resourceId,
},
});The problem is, I have a 'stray' channel that I don't know where it's coming from anymore, neither do I have the auth token to stop this channel (if it's required). Do I just ignore it forever or something?
Metadata
Metadata
Assignees
Labels
size: sPull request size is small.Pull request size is small.type: questionRequest for information or clarification. Not an issue.Request for information or clarification. Not an issue.