-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Anonymous access to a shared database #258
Comments
I have the same question. Which one is the userbase way to allow users to have public data? |
You are correct - the Allowing non-signed in users to open a database with a For now, a workaround to this is to call @IvanCoronado - see #250 for how to use the |
ty @j-berman for the workaround. I will give it a try. |
I had a similar use case to @spiffytech, so excited about the possibility of Another hole here that somebody might have a solution for: if you had a url like youtube.com/watch/:id, there appears to be no way in userbase to query based on a key (an index). So even if a database were shared publicly, how would one find the right database? |
I have a use case where users will be able to share data publicly, to anyone with the URL. Shared data will be unlisted, like unlisted YouTube videos, so anonymous logged-out users need to be able to see exclusively the thing shared with them.
Can I implement this with Userbase? I see items can generate a
shareToken
for a database (and I guess move each shared item into a dedicated database), which sounds exactly like what I want, except a user has to be registered in Userbase to open a database using ashareToken
, so no anonymous access.Does Userbase have a way to solve this?
The text was updated successfully, but these errors were encountered: