SAML Auth Issue with Slack
nidoes anyone know how to connect zitadel to slack?
like use zitadel as the idp for slack to enable sso
like use zitadel as the idp for slack to enable sso


(9:25:09 AM) Support Agent: Based on the logs, I can see that we're receiving an 'idp_config_not_found' error. Still digging into this but it may be related to the IdP side of things.
(9:25:56 AM) Support Agent: Can you update the Identity Provider Issuer URL in Slack to match the one from your IdP and test the configuration?
(9:27:08 AM) Support Agent: Try entering this URL in your Slack configuration and test again: https://login.****.***/saml/v2/metadata
(9:28:17 AM) User: Would this be the provider issuer URL? https://login.****.***/saml/v2/metadata
(9:28:33 AM) Support Agent: Yes, thatβs correct.<?xml version="1.0"?>
<md:EntityDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" entityID="https://slack.com">
<md:SPSSODescriptor protocolSupportEnumeration="urn:oasis:names:tc:SAML:2.0:protocol urn:oasis:names:tc:SAML:1.1:protocol">
<!-- Specify the supported NameID format -->
<md:NameIDFormat>urn:oasis:names:tc:SAML:2.0:nameid-format:persistent</md:NameIDFormat>
<md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" Location="https://[YOUR-WORKSPACE].slack.com/sso/saml" index="0"/>
<!-- Attribute Consuming Service to specify required and optional attributes -->
<md:AttributeConsumingService index="0" isDefault="true">
<md:ServiceName xml:lang="en">Slack SSO Service</md:ServiceName>
<!-- Required Email Attribute -->
<md:RequestedAttribute Name="User.Email"
NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:unspecified"
isRequired="true" />
<!-- Optional Username Attribute -->
<md:RequestedAttribute Name="User.Username"
NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:unspecified"
isRequired="false" />
<!-- Optional First Name Attribute -->
<md:RequestedAttribute Name="first_name"
NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:unspecified"
isRequired="false" />
<!-- Optional Last Name Attribute -->
<md:RequestedAttribute Name="last_name"
NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:unspecified"
isRequired="false" />
</md:AttributeConsumingService>
</md:SPSSODescriptor>
</md:EntityDescriptor>