Standard Post with Image

FastAPI で Google OAuth を使った Single Sign-On (SSO) を実装する方法

現代のアプリユーザーは、新しいパスワードを作ることを望んでいません。その解決策が SSO(シングルサインオン) です。 この記事では、FastAPI, MongoDB, JWT, そして fastapi-sso ライブラリを使って、Google アカウントでログイン可能な SSO を構築する方法をステップ・バイ・ステップで解説します。

Read More
Standard Post with Image

วิธีเชื่อมต่อระบบ Single Sign-On (SSO) ด้วย Google OAuth ใน FastAPI

ในยุคที่ผู้ใช้งานไม่อยากจดจำรหัสผ่านอีกต่อไป — Single Sign-On (SSO) คือคำตอบ บทความนี้จะแนะนำวิธีสร้างระบบล็อกอินผ่านบัญชี Google บนแอปพลิเคชัน FastAPI โดยใช้ MongoDB, JWT, และไลบรารี fastapi-sso เพื่อให้คุณเริ่มต้นได้อย่างมั่นใจและปลอดภัย

Read More
Standard Post with Image

How to Implement Google Single Sign-On (SSO) in FastAPI

Do your users really need another password to remember? In modern web applications, Single Sign-On (SSO) is a must-have. It provides a seamless and secure authentication experience—allowing users to log in using trusted identity providers like Google, Microsoft, or Facebook. In this guide, we’ll show you how to implement Google SSO using FastAPI, MongoDB, and […]

Read More
Standard Post with Image

複数フレームワーク間でのJWT認証の管理

Flaskをフロントエンド、FastAPIをバックエンドAPIとして使用するような複数フレームワークでアプリケーションを開発する際、認証を安全かつスムーズに管理するのは難しい場合があります。JSON Web Token(JWT)は、これらのフレームワーク間で統一された認証の仕組みを実現する強力な方法です。本記事では、その具体的な方法を紹介します。

Read More
Standard Post with Image

การจัดการ JWT Authentication ระหว่างหลายเฟรมเวิร์ก

เมื่อคุณพัฒนาแอปพลิเคชันโดยใช้หลายเฟรมเวิร์ก เช่น Flask สำหรับ frontend และ FastAPI สำหรับ backend API การจัดการระบบยืนยันตัวตนให้ปลอดภัยและราบรื่นอาจเป็นเรื่องท้าทาย JSON Web Token (JWT) เป็นทางเลือกที่ดีในการบริหารจัดการการยืนยันตัวตนให้สอดคล้องกันระหว่างเฟรมเวิร์กต่าง ๆ มาดูกันว่าควรใช้อย่างไรให้มีประสิทธิภาพ

Read More
Standard Post with Image

Managing JWT Authentication Across Multiple Frameworks

When developing applications across multiple frameworks, like Flask for the frontend and FastAPI for backend APIs, ensuring secure and seamless authentication can become complex. JSON Web Tokens (JWT) offer a robust solution to manage authentication consistently across these frameworks. Let’s explore how to effectively manage JWT authentication between Flask and FastAPI.

Read More
Standard Post with Image

JavaScriptでフルスタックのEコマースシステムを開発しよう

商品一覧から決済まで、すべてJavaScriptで構築! 🛠️ なぜJavaScriptを選ぶのか? かつてJavaScriptは「ボタンを点滅させる言語」でした。でも今は違います。Node.jsやReactの登場により、フロントエンドからバックエンド、データベース、決済まで、すべてJavaScriptだけで構築可能です。

Read More
Standard Post with Image

พัฒนา E-commerce แบบ Fullstack ด้วย JavaScript

ครอบคลุมตั้งแต่หน้าร้านถึงระบบหลังบ้าน ด้วยภาษาเดียว 🛠️ ทำไมต้อง JavaScript? ในอดีต JavaScript คือภาษาสำหรับสร้างปุ่มให้กระพริบ แต่วันนี้ JavaScript กลายเป็นเครื่องมือที่ทรงพลัง ใช้สร้างระบบ E-commerce ครบวงจร ได้ทั้งฝั่งหน้าเว็บ (Frontend) และฝั่งเซิร์ฟเวอร์ (Backend)

Read More
Standard Post with Image

Building a Fullstack E-commerce System with JavaScript

From the cart to checkout — all powered by JS. 🛠️ Why JavaScript for E-commerce? JavaScript is no longer just for making buttons blink. It’s now fully capable of powering front to back e-commerce systems. With the rise of Node.js, React, and modern databases, you can build a complete store using JavaScript — and nothing […]

Read More
Standard Post with Image

Djangoでの耐障害性ソフトウェア設計

障害に強いソフトウェアを構築することは、高い可用性と信頼性を確保するために重要です。本記事では、Djangoアプリケーションを耐障害性のあるシステムとして設計するためのアプローチを紹介します。

Read More