this line ``` var postsResponse = await httpClient.GetAsync(api.ApiRootUri + "posts"); ``` should be ``` var postsResponse = await httpClient.GetAsync(api.ApiRootUri + "/posts"); ``` doesn't work without " / "