For further actions, you may consider blocking this person and/or reporting abuse
Read next
LinkedIn: Great for Jobs, Not for Developer
Mr. Algorithm -
NestJS vs Encore.ts: Choosing the Right Framework for Your TypeScript Microservices
Marcus Kohlberg -
How to Secure Your AWS EKS Application with OAuth 2.0 and SSO Integration Using Amazon Cognito and OAuth2-Proxy
akhil mittal -
Functional Programming in TypeScript
aelassas -
Top comments (2)
I don't know if it's the best way because it depends on requirements, constraints and such but I would take a look at using an API Gateway as the auth layer.
The user requests an API, the gateway authenticates the requests, generates a token and opens the gates or blocks the request.
The type of auth flow depends a lot on what you want to accomplish but tools like Kong support different type of authentication methods (from basic auth to jwt to oauth2 to openid to others)
See also How can I add authentication to a microservice/API?
Another way might be to use an external authentication service, like Okta or Auth0