Rust wrapper for Firebase Authentication REST API
Add the following to Cargo.toml:
toml
fireauth = "0.1.3"
First you need to get a web API_KEY
from firebase project settings.
```rust let apikey: String = "s6FqaFcRFd...njhB8cCjN7".toowned();
let auth = fireauth::FireAuth::new(API_KEY); ```
Don't see what you need? See below for unsupported features for now.
```rust let email = "something@email.com".toowned(); let password = "supersecret".toowned(); let returnsecuretoken = true;
match auth.signupemail(email, password, returnsecuretoken).await { Ok(response) => ..., Err(error) => ..., }
// response structure pub struct fireauth::api::SignUpResponse { pub idtoken: String, pub email: String, pub refreshtoken: String, pub expiresin: String, pub localid: String, } ```
```rust match auth.signinemail(email, password, returnsecuretoken).await { Ok(response) => ..., Err(error) => ..., }
// response structure
pub struct fireauth::api::SignInResponse {
pub kind: String,
pub localid: String,
pub email: String,
pub displayname: String,
pub idtoken: String,
pub registered: bool,
pub refreshtoken: Option
```rust match auth.verifyemail(idtoken).await { Ok(sendoobcode) => ... Err(error) => ... }
// response structure pub struct fireauth::api::SendOobCode { pub kind: String, pub email: String, } ```
rust
match auth.reset_password(email).await {
Ok(send_oob_code) => ...
Err(error) => ...
}
```rust match auth.refreshidtoken(refreshtoken).await { Ok(refreshidtokenresponse) => ... Err(error) => ... }
// response structure pub struct fireauth::api::RefreshIdToken { pub accesstoken: String, pub expiresin: String, pub tokentype: String, pub refreshtoken: String, pub idtoken: String, pub userid: String, pub project_id: String, } ```
```rust match auth.getuserinfo(id_token).await { Ok(user) => ..., Err(error) => ..., }
// response structure
pub struct fireauth::api::User {
pub localid: String,
pub email: String,
pub passwordhash: String,
pub emailverified: bool,
pub passwordupdatedat: u64,
pub provideruserinfo: Vec
pub struct fireauth::api::ProviderUserInfo { pub providerid: String, pub federatedid: String, pub email: String, pub raw_id: String, } ```
```rust match auth.changeemail(idtoken, email, returnsecuretoken).await { Ok(update_user) => ... Err(error) => ... }
// response structure
pub struct fireauth::api::UpdateUser {
pub kind: String,
pub localid: String,
pub email: String,
pub provideruserinfo: Vec
pub struct fireauth::api::ProviderUserInfo { pub providerid: String, pub federatedid: String, pub email: String, pub raw_id: String, } ```
rust
match auth.change_password(id_token, password, return_secure_token).await {
Ok(update_user) => ...
Err(error) => ...
}