buildUserInfoUrlStatic static method

String buildUserInfoUrlStatic({
  1. required String baseUrl,
  2. String? customEndpoint,
})

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';
}