An unofficial clerk.dev SDK for rust

Note: This SDK is updated frequently to keep up with any changes to the actual Clerk API. If you see anything that needs updated or is not inline with the offical Clerk api, open an issue!

A unofficial clerk.dev SDK. For more detailed documentation, please reference the clerk docs: https://clerk.com/docs/reference/backend-api

Example

Checkout examples in the /examples directory

Using a traditional http request to a valid clerk endpoint:

```rust use tokio; use clerk_rs::{clerk::Clerk, ClerkConfiguration, endpoints::ClerkGetEndpoint};

[tokio::main]

async fn main() -> Result<(), Box> { let config = ClerkConfiguration::new(None, None, Some("sktestkey".to_string()), None); let client = Clerk::new(config);

let res = client.get(ClerkGetEndpoint::GetUserList).await?;

Ok(())

} ```

Using a clerk-rs method:

```rust use tokio; use clerkrs::{clerk::Clerk, ClerkConfiguration, apis::emailsapi::Email};

[tokio::main]

async fn main() -> Result<(), Box> { let config = ClerkConfiguration::new(None, None, Some("sktestkey".to_string()), None); let client = Clerk::new(config);

Email::create(&client, Some(your_clerk_email));

Ok(())

} ```

Protecting a actix-web endpoint with Clerk.dev:

```rust use actixweb::{web, App, HttpServer, Responder}; use clerkrs::{ClerkConfiguration, validators::actix::ClerkMiddleware};

async fn index() -> impl Responder { "Hello world!" }

[actix_web::main]

async fn main() -> std::io::Result<()> {

HttpServer::new(|| {
    let config = ClerkConfiguration::new(None, None, Some("sk_test_key".to_string()), None);
    App::new().service(
        web::scope("/app")
            .wrap(ClerkMiddleware::new(config))
            .route("/index", web::get().to(index)),
    )
})
.bind(("127.0.0.1", 8080))?
.run()
.await

} ```

Roadmap

Note: This SDK is completely maintained by the Rust community and is by no means affiliated with Clerk.dev.


name