try
{
UserCredential credential;
credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
new ClientSecrets { ClientId = ClientID, ClientSecret = ClientSecret },
new[] { AnalyticsService.Scope.AnalyticsReadonly, AnalyticsService.Scope.AnalyticsEdit },
"user",
CancellationToken.None,
new FileDataStore("Analytics.Auth.Store")).Result;
return credential;
}
catch { return null; }
我使用上述代碼爲谷歌控制檯的Web應用程序(谷歌分析),但它給redirect_uri不匹配的錯誤。我如何發送redirect_uri。谷歌分析集成在mvc4
如何發送使用此代碼 –
你不發送其從谷歌方面的應用程序設置。 – DaImTo
如何與Web應用程序集成 –