You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
basically I'm trying to do this thing in my app where the user can make api calls only 3 times in 24 hours. after that it will have to wait until next day.
I know its best to save it in the database, but for now, I just wanna do it easy way and then later save it in the db.
The text was updated successfully, but these errors were encountered:
The easiest way would be to keep track of the last time an API call was made (persisted to $storage), and reset your counter if it has been more than 24 hours.
basically I'm trying to do this thing in my app where the user can make api calls only 3 times in 24 hours. after that it will have to wait until next day.
I know its best to save it in the database, but for now, I just wanna do it easy way and then later save it in the db.
The text was updated successfully, but these errors were encountered: