# Create OAuth2 application
app = client.oauth_clients.create_client(
name="Trading Bot",
redirect_uris=["http://localhost:8080/callback"]
)
print(f"Created client:")
print(f" Client ID: {app.client_id}")
print(f" Client Secret: {app.client_secret}")
print("Save these credentials securely!")