Nothing
#' Get the base url for Firebase Auth
#'
#' @param endpoint The endpoint of a request.
#' Valid values:
#' - "identitytoolkit" (default)
#' - "securetoken"
#' @return String. Base url.
#' @examples
#' get_base_url()
#' get_base_url(endpoint = "securetoken")
#'
#' @keywords internal
#' @noRd
get_base_url <- function(endpoint = c("identitytoolkit", "securetoken")) {
endpoint <- match.arg(arg = endpoint)
switch(
EXPR = endpoint,
identitytoolkit = "https://identitytoolkit.googleapis.com",
securetoken = "https://securetoken.googleapis.com",
"https://identitytoolkit.googleapis.com"
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.