From ca87eba73837e2fd75e651ead5e478266e697fa2 Mon Sep 17 00:00:00 2001 From: Daniel Fast Date: Wed, 7 May 2025 10:12:13 +0200 Subject: [PATCH] Chatbot_v0.8.1Beta/MainWindow.xaml.cs aktualisiert api key raus genommen --- Chatbot_v0.8.1Beta/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chatbot_v0.8.1Beta/MainWindow.xaml.cs b/Chatbot_v0.8.1Beta/MainWindow.xaml.cs index 0f0caa2..7403add 100644 --- a/Chatbot_v0.8.1Beta/MainWindow.xaml.cs +++ b/Chatbot_v0.8.1Beta/MainWindow.xaml.cs @@ -212,7 +212,7 @@ namespace Chatbot_WPF_Projekt //mehtohde für die wetter Api private async Task GetWeatherAsync(string city) { - string apiKey = "d3348e2e2c9dba104f58d7d44f6f623e"; + string apiKey = ""; string url = $"https://api.openweathermap.org/data/2.5/weather?q={Uri.EscapeDataString(city)}&units=metric&lang=de&appid={apiKey}"; using HttpClient client = new HttpClient();