Skip to content

Commit

Permalink
Changed parking code
Browse files Browse the repository at this point in the history
  • Loading branch information
StanlyLife committed Oct 18, 2023
1 parent be4483a commit 6373948
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public WeatherForecastController()
public async Task<IActionResult> Get()
{
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://trondheim-autopark.giantleap.net/public/rest/site/zone/7333/capacity");
var request = new HttpRequestMessage(HttpMethod.Get, "https://trondheim-autopark.giantleap.net/public/rest/site/zone/7378/capacity");
request.Headers.Add("Authorization", "Basic c2l0ZXByb3BlcnR5Onc2cjI4ODI1YXNteDVxNThhcGxp");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Expand Down

0 comments on commit 6373948

Please sign in to comment.