Welcome to the Azure Up blog. It’s a great time to be a software
engineer. The cloud has opened all kinds
of new opportunities. The Azure platform
is one of the leading cloud platforms. Although it is Microsoft's cloud it is an open platform that supports a wide range of open source technologies. On this blog we will explore this platform using .NET, Python and Java.
Now that we have our site being authenticated we need to create the rest of the login process for our new users. When our users are logged in the first time we want to send them to the login page so that we can collect some additional customer information about them. We will use the id that is passed back to us by Facebook to lookup our new user in the database we are going to create. If we don’t find the Id we will redirect our user to the new login page. Our first step will be to layout our database. We have a lot options for databases that can be hosted in the cloud. On one end of the spectrum we could create a VM to host our database. This would require us to manage the VM as well as the database. We would also need to setup the storage and manage backups directly. This gives a fine level of control over the environment. The downside of this approach is that you have...
Comments
Post a Comment