A universal truth in programming is that there are relatively few unique unsolved problems. What tasked with a new problem, always see what other solutions exist and how we can solve our new one. In this instance, we are going to use open source solutions to auth against existing services. Handlers all the way down Everything we write will be http handlers. This allows us to encapsulate objects as far down the chain as needed. Making pretty social sign in page We get a quick lesson on bootstrap, and why and how to use it. There are two methods to showing our bootst rap. We can leave it hosted on a CDN or add it to our assets folder. Endpoints with Dynamic Paths Go doesn't support the most robust path selections (/path/options), such as ruby on rails or Django python. As with everything Go, there are open source packages we can use to help with this functionality. We will use string.split to break our argument paths in the re...
Comments
Post a Comment