Ошибка Google calendar api в IIS
Здравствуйте Сэр,
Я использую API календаря в веб-форме. Его работа нормально localhost, но дает ошибку на iis не открыть всплывающее окно аутентификации oauth на iis.
Что я уже пробовал:
UserCredential credential; string credPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "credentials", name + "\\calendar-dotnet-quickstart.json"); string path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "client_secret.json"); using (var stream = new FileStream(path, FileMode.Open, FileAccess.Read)) { credential = GoogleWebAuthorizationBroker.AuthorizeAsync( GoogleClientSecrets.Load(stream).Secrets, Scopes, "user", CancellationToken.None, new FileDataStore(credPath, true)).Result; }