August 2025 Summaries
8 posts from FusionAuth
Filter
Month:
Year:
Post Summaries
Back to Blog
OAuth 2.0 is a widely-used framework that enables secure delegated access to resources without exposing user credentials by utilizing various grant types, each including core components such as client ID and secret, authorization endpoint, token endpoint, redirect URI, scopes, and access tokens, designed for different applications and use cases, with recommended grant types like the Authorization Code Grant ideal for web and mobile apps with backend servers, and others such as Client Credentials Grant used for server-to-server communication. When implementing OAuth 2.0, it's essential to consider factors like client type, security needs, user experience, and use case mapping to select the best grant type, following best practices such as using HTTPS, setting token expiration times, and securely storing tokens, with a focus on secure authentication and authorization for web apps, APIs, and devices.
Aug 20, 2025
527 words in the original blog post.
Implementing OAuth2 authentication with a browser popup for automated testing in an Android Emulator presents challenges that were addressed in the development of the FusionAuth Android SDK. The blog outlines the importance of end-to-end testing using a real FusionAuth backend to ensure the reliability and seamless integration of authentication and authorization features in Android apps. By moving away from traditional mocking, which can obscure real-world issues, and instead utilizing a "local-first" approach with actual login flows, the testing framework catches regressions early and improves confidence in the application's functionality. The testing strategy involves converting manual interactions into automated scripts executed within the IDE, integrating tests into GitHub workflows for consistent checks against updates, and setting up an environment that includes multiple Android versions and emulators. This comprehensive testing approach, coupled with GitHub automation and Dependabot configurations for dependency management, ensures thorough validation and maintains high standards of quality and reliability for the SDK, which is critical for a secure user experience in mobile apps.
Aug 20, 2025
3,739 words in the original blog post.
In a content-rich environment, sharing across platforms like YouTube and X.com (Twitter) can be streamlined using FusionAuth's Identity Provider Links, which simplify user authentication and API access across multiple platforms through a single account. This integration allows for a seamless video upload experience by linking a FusionAuth account to multiple social identities, leveraging access and refresh tokens to maintain security. Users can log in once to access different platforms, enabling single sign-on, token management, and cross-platform publishing. The process involves configuring identity providers like Google and X.com, setting up OAuth credentials, and creating a Node.js application with Fastify to handle video uploads and user authentication. By using Identity Provider Links, applications can unify content publishing workflows, enhance user experience, and potentially introduce features like consolidated analytics and synchronized moderation. The example application, which is available on GitHub, demonstrates these concepts, showcasing how developers can implement similar functionalities in their projects.
Aug 18, 2025
6,341 words in the original blog post.
FusionAuth 1.59.0, dubbed "The Identity Ibex," introduces significant enhancements by making phone numbers a first-class identity type, thereby enabling passwordless SMS authentication. This update addresses the needs of users who either lack an email address or prefer phone-based authentication, which is particularly useful for apps targeting global markets or mobile-first experiences. Users can now register using just their phone number and authenticate with SMS codes, which reduces password fatigue and login friction. The release maintains all existing FusionAuth features like MFA and advanced threat detection for phone-based identities and includes security improvements such as cross-site scripting protection and injection attack prevention. It also features user experience and developer enhancements, such as optional passwords, JWT flexibility, and better error handling. The database schema underwent significant changes to support phone-based workflows while ensuring compatibility with existing email systems. These advancements lay the groundwork for further enhancements in mobile-first identity management, positioning FusionAuth to optimize regional SMS providers and explore additional phone-based authentication options.
Aug 15, 2025
692 words in the original blog post.
Air-gapping is a security practice where software systems are isolated from external networks, including the internet, to protect sensitive data and operations. This separation, achieved through physical or logical means, is crucial for industries with stringent regulatory requirements like defense, healthcare, or finance. Air-gapped environments can also result from geographical constraints, such as on cruise ships or mining stations. Despite the lack of internet connectivity, applications in air-gapped environments still require user management and authentication, which can be facilitated by auth servers like FusionAuth. FusionAuth's Enterprise plan supports air-gapped deployments, offering features like offline license validation and secure management of user credentials. This setup ensures that applications remain functional and secure, even when disconnected from the internet, by using internal network protocols and monitoring tools to manage access and detect security incidents. Additionally, procedures for updating software in air-gapped systems involve rigorous change management and testing in isolated staging environments to maintain security and functionality.
Aug 13, 2025
2,275 words in the original blog post.
FusionAuth is engaging with industry professionals by participating in three major events: the devcom Developer Conference, gamescom 2025, and the AWS Summit Los Angeles, all taking place in 2025. At these events, FusionAuth aims to showcase their expertise in single-tenant architecture, containerized deployments, and migration strategies that preserve user data without requiring password resets. The company will demonstrate how their solutions address the unique challenges of gaming platforms, such as handling user spikes and creating customizable login experiences, while also offering insights into scalable and secure authentication on AWS. Attendees will have the opportunity to engage directly with FusionAuth's technical team, who are prepared to discuss architecture decisions and provide tailored solutions to specific use cases. For those unable to attend, FusionAuth's Solutions Engineering team remains available for consultations on authentication strategies, ensuring that clients can explore alternatives and make informed decisions about their authentication needs.
Aug 06, 2025
604 words in the original blog post.
FusionAuth, a developer-first Customer Identity and Access Management (CIAM) platform, has achieved ISO 27001 certification, underscoring its commitment to high security standards through a comprehensive Information Security Management System (ISMS). This certification, awarded by AssurancePoint, follows an independent audit and complements FusionAuth's existing SOC 2 Type II compliance, enhancing its reputation as a trusted partner for enterprises needing robust security frameworks. The certification covers various aspects of the company's operations, including information security governance, access management, incident response, and business continuity, reflecting FusionAuth's dedication to maintaining rigorous security standards. This achievement aligns with the company's strategy of providing both self-hosted and cloud options, allowing organizations to control their identity data while benefiting from advanced security features such as multi-factor authentication and real-time threat detection. FusionAuth's ongoing investment in security includes annual penetration testing and continuous security monitoring, ensuring that its practices evolve to meet emerging threats and regulatory requirements. The platform is trusted by over 450 global organizations and offers a flexible deployment model without hidden costs, demonstrating its appeal to both developers and enterprises.
Aug 05, 2025
516 words in the original blog post.
Deploying a web application to Vercel involves integrating with GitHub, creating a Vercel project, and utilizing serverless architecture for quick global content delivery. Vercel supports various frameworks, including React and Vue.js, and allows for instant deployment through GitHub, GitLab, or Bitbucket. This tutorial guides users on setting up a Vercel project with a Vue.js application configured with FusionAuth for authentication, explaining how to fork a repository, configure GitHub secrets, and automate deployment via GitHub Actions. Users are also advised on setting up custom environments for testing before production deployment to manage different stages of development effectively. The tutorial emphasizes the importance of cautious deployment practices while highlighting the simplicity of deploying a FusionAuth-secured app to Vercel with a mere git push.
Aug 03, 2025
1,799 words in the original blog post.