Three things to never build yourself: auth, notifications, payments
1–10 of 193 posts
Re: Three things to never build yourself: auth, notifications, payments
#2Re: Three things to never build yourself: auth, notifications, payments
#3Re: Three things to never build yourself: auth, notifications, payments
#4All 3 carry great examples of APIs managing the many APIs within.
Re: Three things to never build yourself: auth, notifications, payments
#5Re: Three things to never build yourself: auth, notifications, payments
#6I sometimes write auth/SAML solutions. They're not super complicated once you understand the basics of the system.
Re: Three things to never build yourself: auth, notifications, payments
#7Letting other people handle Auth and Notifications is a great way to get the rug pulled out from under you.
Re: Three things to never build yourself: auth, notifications, payments
#8Letting other people handle Auth and Notifications is a great way to get the rug pulled out from under you.
Re: Three things to never build yourself: auth, notifications, payments
#9Regarding auth, I absolutely bought to JWT cool-aid but honestly if you're still on the monolith phase just use the most popular auth framework for your language. JWT adds a lot of complexity and room for misconfiguration, you do get something in return of course - it is stateless (hence scalable), works great with microservices, and improves your security model somewhat by separating issuing from verification. But y…