This is where you can describe your product’s features
redirect URL
will have a type that specifies under which event it will be used.
Type | Description |
---|---|
registration | Used when a user is first created on Streambird. |
login | Used when an existing user is trying to log in and authenticate our API. |
invite | Used when an invite request is created. |
default
, it will be used by any authentication requests without a specified login_redirect_url
or registration_redirect_url
.
magic links
and OAuth
authentication methods where you can specify the registration
, login
, and invite
redirect URLs when you create and initiate authentication requests for your users.
xyz.com
, you can create a redirect URL https://*.xyz.com/login/verify
. This will allow any subdomain of xyz.com
like https://custom.xyz.com
to be considered a valid redirect URL when initiating authentication requests.
We do perform exact match for path validation so in the case of https://*.xyz.com/login/verify
, we will only allow URLs such as https://custom.xyz.com/login/verify
since the path /login/verify
matches exactly the path of the wildcard redirect URL created in the Dashboard.
default
since Streambird uses the default redirect URL when no specific redirect url is sent in for any authentication requests.