2

I need to bootstrap a Django application with ReactJS. Authentication needs to work through Siteminder (SSO). How can ReactJS components know what user is authenticated? What are the common techniques for client side components to know the authenticated user, if any?

softwarematter
  • 28,015
  • 64
  • 169
  • 263

1 Answers1

0

you can do so by using "authentication backends" available in Django. https://docs.djangoproject.com/en/3.1/topics/auth/customizing/#other-authentication-sources

You might have to make calls to API provided by your SSO provider to do a complete integration.