Hi guys, I have got a doubt here in airtable, so actually, I was creating an application, so i was storing user’s data and i was checking if it’s the account of the person with the device id, so when i fetched the device id, how can i show the data of that user, in the profile page of my app.
I was using this, but i dont know which cell to get, and how to fetch which cell i should GET to show user’s correct data.
I am a bit confused and I wish someone would help me. Thanks.
From the information provided by you, you want to store data of a specific user. But you don’t know which row to fetch.
If I am right then, There a 2 cases:-
When user is signed up. If this is the case then, you have store registration number in tiny db in the sign up page. Now use index in list to find the row
Make sure to save registration no at signup.
And if this is not the case, elaborate your problem
Actually i need to fetch the data of the user, so I use the device_id from device utilities to see if user is registered or not, and if the user is registered, I’ll ask the person to enter password and login, I am storing these things :-
First you need to use get column block on initialize screen event and save it as a global list then check the if Device Id is in Global list then use get row block
I almost made it, but nice it is a lot more detailed than mine. Nice
But one question though why are you calling to get a cell block this just increases your api request and air table gives you 1000 requests per month for free and 100,000 if you pay for it. But if you waste 7 requests per user. This is insufficient.
I guess this will be more efficient
It only uses 3 requests per users.
I am not saying your way is wrong it will give the same result as mine. But it has a lot of blocks and uses alot of requests.
I hope this will help you.
Thanks