rocket_oauth2
helps set up OAuth 2.0 sign-in or authorization in
Rocket applications.
- 0.4.x, compatible with
rocket
0.4.x
, are based on themaster
branch - 0.5.0-rc.x, compatible with
rocket
0.5.0-rc.x
, are based on thenext
branch
For more detailed examples and explanations, see the crate documentation and the
projects in the repository's examples
directory.
use rocket::http::{Cookie, Cookies, SameSite};
use rocket::Request;
use rocket::response::Redirect;
use rocket_oauth2::{OAuth2, TokenResponse};
struct GitHub;
#[get("/login/github")]
fn github_login(oauth2: OAuth2<GitHub>, mut cookies: Cookies<'_>) -> Redirect {
oauth2.get_redirect(&mut cookies, &["user:read"]).unwrap()
}
#[get("/auth/github")]
fn github_callback(token: TokenResponse<GitHub>, mut cookies: Cookies<'_>) -> Redirect
{
cookies.add_private(
Cookie::build("token", token.access_token().to_string())
.same_site(SameSite::Lax)
.finish()
);
Redirect::to("/")
}
fn main() {
rocket::ignite()
.mount("/", routes![github_callback, github_login])
.attach(OAuth2::<GitHub>::fairing("github"))
.launch();
}
[global.oauth.github]
provider = "GitHub"
client_id = "..."
client_secret = "..."
redirect_uri = "http://localhost:8000/auth/github"
rocket_oauth2
is licensed under either of the following, at your option:
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT License (LICENSE-MIT or http://opensource.org/licenses/MIT)