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