drupal_kit 0.3.3

Flexible Drupal HTTP client supporting a variety of popular contrib modules
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub enum SimpleOauthGrant {
    ClientCredentials {
        client_id: String,
        client_secret: String,
        scopes: Vec<String>,
    },
    RefreshToken {
        client_id: String,
        client_secret: String,
        refresh_token: String,
        scopes: Vec<String>,
    },
}