Skip to main content

How to determine if an IdP is configured to use ROPG

Updated over 3 weeks ago

Description

This article provides a method to check to see if an identity provider supports ROPG authentication in order to integrate with Jamf Connect. For more information on the ROPG authentication protocol, please see Authentication Protocols in the Jamf Connect Documentation.

Understanding Your Cloud Identity Provider Compatability

Follow the steps below to see if your cloud identity provider supports ROPG authentication:

1. In a web browser, navigate to "https://identityproviderurl.com/.well-known/openid-configuration" replacing identityproviderurl with the URL of your identity provider

2. Search for "grant_types"supported"

3. If the return for grant_types_supported includes "password", this means that the identity provider is configured to support ROPG authentication:

ROPG configured:

"grant_types_supported":["authorization_code","implicit","refresh_token","password"],

ROPG not configured:

"grant_types_supported":["authorization_code","implicit","refresh_token"],

Did this answer your question?