Field | Type | Required | Description | Example |
---|---|---|---|---|
object |
models.OAuthApplicationWithSecretObject | ✔️ | N/A | oauth_application |
id |
str | ✔️ | N/A | oauth_app_1234 |
instance_id |
str | ✔️ | N/A | instance_5678 |
name |
str | ✔️ | N/A | Example OAuth App |
client_id |
str | ✔️ | N/A | client_12345 |
public |
bool | ✔️ | N/A | false |
scopes |
str | ✔️ | N/A | profile email |
redirect_uris |
List[str] | ✔️ | N/A | |
callback_url |
str | ✔️ | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. | https://example.com/oauth/callback |
authorize_url |
str | ✔️ | N/A | https://example.com/authorize |
token_fetch_url |
str | ✔️ | N/A | https://example.com/oauth/token |
user_info_url |
str | ✔️ | N/A | https://example.com/userinfo |
discovery_url |
str | ✔️ | N/A | |
token_introspection_url |
str | ✔️ | N/A | |
created_at |
int | ✔️ | Unix timestamp of creation. |
1609459200 |
updated_at |
int | ✔️ | Unix timestamp of last update. |
1612137600 |
client_secret |
Optional[str] | ➖ | Empty if public client. |
secretXYZ123 |