Better support for scenarios for SPA hosted in WebAPI without JWT tokens in the browser?

PIERME Jean lou 1 Reputation point
2021-11-18T08:46:31.233+00:00

At my company, most of our apps (100+) are SPAs using an OpenIDConnect auth server, talking with their APIs with JWT tokens.
They use some javascript oidc library to retrieve the access tokens from the authority.

However, we might want to go away from that model, for 2 main reasons :

One of the solution is using a BFF between the app and the api, however, we would want to avoid that when it is not necessary, because it's simpler to deploy, and cheaper to host.

That means hosting your SPA in the same app than your API, but that scenario isn't what the aspnetcore team seems to recommand (based on answers I read on the github issues), and requires a few hacks to make it work.

Will that type of scenario be better supported in the future or would you recommand a different approche altogether?

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,772 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,590 questions
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Bruce (SqlWork.com) 70,776 Reputation points
    2021-11-18T16:04:14.443+00:00

    See the new reverse proxy made for this case

    https://devblogs.microsoft.com/dotnet/announcing-yarp-1-0-release/

    Note: I always proxy my spas via the hosting server typically via /api. If using node to host, this is pretty typical.

    0 comments No comments

  2. PIERME Jean lou 1 Reputation point
    2021-11-19T08:37:02.707+00:00

    I've seen YARP's release but I still wonder what would the hosting model be like in that case?
    I want to avoid having to host 2 webapp in my cloud provider to avoid paying 2x what I need to.

    Are you suggesting this (apologies for the bad drawing) ?

    basic schema idea

    0 comments No comments

  3. Bruce (SqlWork.com) 70,776 Reputation points
    2021-11-19T15:59:04.737+00:00

    You question concerned issues when the SPA called a webapi which was not the hosting website. The proxy can used in this case. The standard .net SPA template is a webapi hosting the SPA static site.

    In general monolithic webapi’s are discouraged, as there tends to be too much coupling and scaling may be effected. But if it’s a small site and costs are a concern than a single site makes sense. But if hosting in AWS or Azure, then lambda or azure functions may be an option as they are low cost.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.