Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kennedymwavu/firebase.auth.rest
R Wrapper for Firebase Authentication REST API
https://github.com/kennedymwavu/firebase.auth.rest
Last synced: 16 days ago
JSON representation
R Wrapper for Firebase Authentication REST API
- Host: GitHub
- URL: https://github.com/kennedymwavu/firebase.auth.rest
- Owner: kennedymwavu
- License: other
- Created: 2024-08-21T01:28:39.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-21T01:46:59.000Z (3 months ago)
- Last Synced: 2024-08-21T02:45:27.129Z (3 months ago)
- Language: R
- Homepage: http://mwavu.com/firebase.auth.rest/
- Size: 3.45 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# firebase.auth.rest
[![CRAN status](https://www.r-pkg.org/badges/version/firebase.auth.rest)](https://CRAN.R-project.org/package=firebase.auth.rest)
R wrapper for [Firebase Authentication REST API](https://firebase.google.com/docs/reference/rest/auth).
Designed to be used on the backend of your R applications & APIs.
`{firebase.auth.rest}` enables you to integrate Firebase Authentication services
seamlessly into your projects, allowing for user authentication, account
management, and other authentication-related tasks.Suitable if you need **absolute full control** on how you build &
customize your login & registration process/pages, while still using Firebase
Auth.# Installation
You can install the development version of `{firebase.auth.rest}` like so:
``` r
remotes::install_github("kennedymwavu/firebase.auth.rest")
```# Usage
1. Create a [Firebase project](https://console.firebase.google.com/).
2. Grab the project's API key and place it in your `.Renviron` as `FIREBASE_API_KEY`:```r
FIREBASE_API_KEY = Your-API-Key-Goes-Here
```
3. Restart your R session.
4. Connect to your frontend.Functions in the package are named similarly to the descriptions in the
[Firebase Authentication REST API](https://firebase.google.com/docs/reference/rest/auth)
docs.These are the exported ones:
- `sign_up()`: Sign up user with email/password.
- `send_email_verification()`: Send email verification.
- `sign_in()`: Sign in a user with email & password.
- `sign_in_anonymously()`: Sign in a user anonymously.
- `send_password_reset_email()`: Send password reset email.
- `change_email()`: Change user email.
- `change_password()`: Change user password.
- `update_profile()`: Update user profile.
- `delete_account()`: Delete user account.
- `get_user_data()`: Get user data from firebase.
- `exchange_custom_token()`: Exchange custom token for an ID and refresh token.
- `exchange_refresh_token()`: Exchange a refresh token for an ID token.# Examples
Examples are provided [here](https://github.com/kennedymwavu/firebase.auth.rest-examples).
# Related projects
- [{firebase}](https://github.com/JohnCoene/firebase)
- [{polished}](https://github.com/Tychobra/polished)