Reputation: 1
I have customers using my application that want to use AD FS to retrieve e-mails from there accounts like GMAIL. Can i use Chilkat to retrieve the e-mails from AD FS accounts ?
Upvotes: 0
Views: 107
Reputation: 17690
Yes, but probably not in the way you intend.
ADFS is a mechanism for managing user entitlements in a Microsoft system. G Suite has an integration that can read and provision users based on their ADFS entitlements, as well as enable SSO using a SAML-like system.
You can use any software to access a G Suite account, but you probably won't be able to easily use the SSO infrastructure provided by the ADFS integration to authenticate.
Instead, you'll want to use the OAuth entitlement system baked into G Suite. This would allow users to grant access (authenticated in whatever way is configured by their organization) to access their email with your application that accesses their G Suite email using the GMail APIs.
The benefit of this approach is that you actually broaden your customer base because your application can be used on ANY gmail or gsuite account, not just accounts that use ADFS.
Upvotes: 0