Apr 18, 2020 11:25 AM
Ok so I know that this would be fairly complex, and may not be possible, but if it is, how would I go about making a login system using Airtable. I am trying to see if I can use Airtable as the backend database to something, and I’d like to try and refrain from using an SQL database, if possible. Of course, if completely necessary, I am completely comfortable doing so.
Any help is appreciated.
Apr 18, 2020 12:50 PM
Two things come to mind with this statement - please tell me which you are inferring:
If it’s #1, I don’t recommend it, but I also don’t know anything about your grander objectives. If it’s #2, there are many examples where developers have abstracted Airtable data away from the Airtable app and provided fairly good security features. Stacker.app comes to mind as one to look at.
Apr 18, 2020 01:38 PM
It is option 1. I’d like to just attempt to do this.
Apr 18, 2020 01:41 PM
Are you looking for something like this article about creating a user database?
Keep in mind, that in addition to the security issues for storing user credentials in Airtable, you also have to figure out how to send those credentials back and forth securely, and how to use those credentials securely in the rest of your website.
One of my first projects when I was learning how to code was creating a user portal website with an Airtable backend. In that version, I stored user credentials in Airtable. So, yes, it is possible, even for someone new to coding, but it is also a lot of work.
Apr 18, 2020 01:42 PM
Your user portal project seems like exactly the sort of thing I’d like to do.
Apr 18, 2020 01:44 PM
Okay, #1 it is. This is possible, but it might not be ideal from a security perspective (and I’m no security expert either). In any case -
Apr 18, 2020 01:46 PM
I’m a little confused as to how I can search through an Airtable database to find a username.
Apr 18, 2020 01:50 PM
Your web app could do this in a number of ways; here’s one…
You could also perform a direct queryFilter on the table via the API requesting only user/pw that matches.
Apr 18, 2020 01:53 PM
I think what I’ll do is use the queryFilter to find a username, get the hashed password associated with that username, and compare it to the password inputted.
Apr 18, 2020 02:02 PM
In my personal experience, building a user portal was considerably more difficult than Bill’s three steps imply. Probably by several orders of magnitude.
Plus, there’s everything you have to do once you move past the login page …
However, you are probably starting with more coding knowledge than I had, so it may be easier for you.