diff --git a/server/.env.template b/server/.env.template index d54c511..69702a9 100644 --- a/server/.env.template +++ b/server/.env.template @@ -4,7 +4,7 @@ DB_PASSWORD="" DB_HOST="" DB_DIALECT="" DB_PORT="" -WIGLE_TOKEN="" +WIGLE_TOKEN="" # Go to account and generate token "Encoded for use" WIGLE_BASE_URL="https://api.wigle.net" WIGLE_NETWORK_SEARCH="/api/v2/network/search" GET_LOCATION_WIFI_MAX_AGE=1209600000 # 14 Tage in Millisekunden (14 * 24 * 60 * 60 * 1000) diff --git a/server/src/proxy/wigle.ts b/server/src/proxy/wigle.ts index 0b8d913..d2139cd 100644 --- a/server/src/proxy/wigle.ts +++ b/server/src/proxy/wigle.ts @@ -51,7 +51,7 @@ export const getLocationForWifi = async ( method: "GET", headers: { "Content-Type": "application/json", - Cookie: `auth=${process.env.WIGLE_TOKEN}`, + Authorization: `Basic ${process.env.WIGLE_TOKEN}`, }, }); return await response.json();