Updated documentation for Rc1 seems syntactically incorrect.
I'm using remote authentication.
The initial blogpost references
AddJsonSessionKeySerializer
Intellisense doesn't recognise this method but does like AddJsonSessionSerializer. Is this the correct method?
Also in remote auth documentation
builder.Services.AddSystemWebAdapters()
.AddRemoteApp(options =>
{
options.RemoteAppUrl = new(builder.Configuration["ReverseProxy:Clusters:fallbackCluster:Destinations:fallbackApp:Address"]);
options.ApiKey = builder.Configuration("RemoteAppApiKey");
})
.AddRemoteAppAuthentication(true);
I get intellisense errors for AddRemoteAppAuthentication.
Have these documents been updated since the api changes?