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 |
callback_url |
str | ✔️ | N/A | 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 |
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 |