public static new string GetRequestUrl(string clientId, string scope, string callbackUrl)
 {
     return(GoogleClient.GetRequestUrl(clientId, scope, callbackUrl));
 }
Beispiel #2
0
 public WeatherForecastController(ILogger <WeatherForecastController> logger, GoogleClient googleClient)
 {
     _logger       = logger;
     _googleClient = googleClient;
 }