buildTokenUrlStatic static method
Builds the token endpoint URL (static version)
Implementation
static String buildTokenUrlStatic({
required String baseUrl,
String? customEndpoint,
}) {
return customEndpoint ??
'$baseUrl/api/method/frappe.integrations.oauth2.get_token';
}