This is a simple implementation of OpenID for Steam authorization used by Velocity Vault.
```Rust // Redirect the user to this url: let redirecturl = steamopenid::redirect("http://localhost:8080", "http://localhost:8080/callback");
// Then in your callback: let steamid64 = steamopenid::verify(req.querystring()).unwrap(); ```