Better URLs for hooks #1566
Replies: 1 comment 1 reply
|
thanks for ideas @RickMeasham ! Sounds like mostly backend changes required here, feel free to open specific issues in https://github.com/supabase/gotrue I will have a think on how the interface can be standardised without too many breaking changes. One idea is to ensure a I'm open to adding a open to further input on these, thanks for kick-starting the discussion! |
Uh oh!
There was an error while loading. Please reload this page.
At the moment if someone attempts to re-use the magic login URL they are redirected to the front end with a 404 in the location hash:
And if someone is doing a password reset:
These are fairly arbitrary and ultimately the only way to handle it is pattern matching. The example realtime chat app does a browser level redirect based on the precise hash content. That's really inefficient!
Is there any way that we can get less arbitrary URLs or be able to specify a URL for various events?
Less arbitrary (also: the ability to choose between a hash and a query string please?):
Specified would be up to the app owner:
All reactions