jortt 0.1.0

Async Rust SDK for the Jortt API with typed modules, hybrid OAuth helpers, and raw operation escape hatch
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Sequence - Token Refresh Flow

```mermaid
sequenceDiagram
    autonumber
    participant App as Consumer App
    participant OAuth as OAuthClient
    participant Auth as Jortt OAuth Server

    App->>OAuth: refresh_access_token(client_id, secret, refresh_token)
    OAuth->>Auth: POST /oauth/token grant_type=refresh_token
    Auth-->>OAuth: 200 TokenSet
    OAuth-->>App: new TokenSet
    App->>App: persist new token set
```