ContributionsMost RecentMost LikesSolutionsHow to handle multiple accounts using GoToWebinar API We are using GoToWebinar API to download Webinar Data. Desktop Application developed using vb.net and using the .NET SDK (https://developer.goto.com/guides/SDKs/03_NET-SDK/) related help to connect using OAuth2Api. We can download data from one GoToWebinar Account by getting the Access Token. -------- clientId = "forAccount1ID" clientSecrete = "forAccount1Pwd" var oauth2Api = new OAuth2Api(clientId, clientSecret); string authUrl = oauth2Api.GetOAuth2AuthorisationUrl(); .... .... -------- /* using a WinForms WebBrowser implementation */ void webBrowser_Navigated(object sender, WebBrowserNavigatedEventArgs e) { string responseKey = oauth2Api.GetResponseKey(e.Url); // => " ******** " var tokenResponse = oauth2Api.GetAccessTokenResponse(responseKey); var accessToken = tokenResponse.access_token; // => " ******** " } -------- We are not getting the proper token when we use different clientId for our 2nd Account. Is there any method to revoke or terminate the earlier OAuth session ? Re: Approval settings are always displayed "Automatic" After clearing the cache, I got the correct display only once. However, after the second time, it will return to automatic and will not improve. Approval settings are always displayed "Automatic" When I edit an event on my dashboard, Approval always shows up as automatic. The event behaves as Manual, but it's very confusing. In addition, items such as SURVEY may not be displayed with the set contents. Once set, the profile seems to change correctly, but it is very confusing that it does not display correctly on the dashboard, which is the user interface, so please correct it. Thank you. Solved