예제 #1
0
        public NaturalLanguageIntelligence(GoogleCloudClassSetup setup)
        {
            httpClient = new HttpClient();

            // Since this is the first time we use the httpClient, we need to intialize its base address
            httpClient.BaseAddress = new Uri(setup.getAPIUrl("NATURAL_LANGUAGE_INTELLIGENCE_API_URL").ToString());
            APIKey = setup.getAPIKey();
        }
예제 #2
0
        public PlacesDetail(GoogleCloudClassSetup setup)
        {
            httpClient = new HttpClient();

            // Since this is the first time we use the httpClient, we need to intialize its base address
            httpClient.BaseAddress = new Uri(setup.getAPIUrl("PLACES_API_URL").ToString());
            APIKey = setup.getAPIKey();
        }
예제 #3
0
 public void UpdateKey(GoogleCloudClassSetup setup)
 {
     APIKey = setup.getAPIKey();
 }
예제 #4
0
 public void UpdateURL(GoogleCloudClassSetup setup)
 {
     httpClient.BaseAddress = new Uri(setup.getAPIUrl("NATURAL_LANGUAGE_INTELLIGENCE_API_URL").ToString());
 }
예제 #5
0
 public void UpdateURL(GoogleCloudClassSetup setup)
 {
     httpClient.BaseAddress = new Uri(setup.getAPIUrl("PLACES_API_URL").ToString());
 }