Complete the OAuth callback with an optional authorization code.
(&self, code: Option<&str>)
| 111 | |
| 112 | /// Complete the OAuth callback with an optional authorization code. |
| 113 | pub async fn callback(&self, code: Option<&str>) -> Result<Value, PluginAuthError> { |
| 114 | let result = self.client.auth_callback(code).await?; |
| 115 | Ok(result) |
| 116 | } |
| 117 | |
| 118 | /// Load the auth provider configuration. |
| 119 | /// |
nothing calls this directly
no test coverage detected