July 2025 Summaries
2 posts from PropelAuth
Filter
Month:
Year:
Post Summaries
Back to Blog
PropelAuth has introduced several updates, including the ability to enable Dark Mode on hosted pages, allowing users to customize a separate theme through the PropelAuth dashboard and set a default dark theme via a query parameter. They also expanded support for SCIM by integrating with JumpCloud as an Identity Provider, enabling organizations to globally activate SCIM through their profile page and providing detailed setup instructions for a seamless experience. Additionally, adjustments have been made to the SAML/SCIM guides for Azure and Okta, enhancing the explanation of role mapping from a customer's IdP to applications, and introducing more email confirmation options and domain-based autoconfirmation behaviors. SAML connections now adhere to organization settings that restrict user invitations based on email domains.
Jul 31, 2025
285 words in the original blog post.
OAuth2 is a protocol designed to allow applications to access user data securely without needing the user's password, using a system of temporary codes and access tokens. The process involves redirecting the user to a trusted identity provider like Google, where they log in and grant permission for the application to access specific data, such as an email address. The identity provider then generates a temporary code, which the application exchanges for an access token that can be used to request the user's data from the provider. This flow, known as the Authorization Code grant, includes various security measures like state parameters to prevent unauthorized access and open-redirect vulnerabilities. While OAuth2 can initially seem complex, understanding its basic mechanism of using tokens instead of passwords helps demystify its purpose, and numerous client libraries simplify its implementation by managing the intricate details of the protocol.
Jul 29, 2025
2,268 words in the original blog post.