Google .NET APIs - any other DataStore other than the FileDataStore?
HI,I'm utilizing the Google .NET API to get examination information from google investigation.
this is me code to begin the verification:
IAuthorizationCodeFlow stream =
new GoogleAuthorizationCodeFlow(new GoogleAuthorizationCodeFlow.Initializer
{
ClientSecrets = new ClientSecrets
{
ClientId = googleApiClientId,
ClientSecret = googleApiClientSecret
},
Extensions = new[] {
Google.Apis.Analytics.v3.AnalyticsService.Scope.AnalyticsReadonly
},
DataStore = new Google.Apis.Util.Store.FileDataStore("Test_GoogleApi")
});
it clients the FileDataStore which stores in neighborhood client profile as a document. I'm running this code inside an ASP.NET application so I can't generally utilize that FileDataStore so what I will require is some other method to get the information.
Google.Apis.Util.The store contains just the FileDataStore and an interface of IDataStore. Before I go and actualize my own particular DataStore - are there some other DataStore questions out there accessible for download?
Thanks
Kosmiktechnologies.com