13 articles

📰 Dev.to · Fiyinfoluwa Ojo

Articles from Dev.to · Fiyinfoluwa Ojo · 13 articles · Updated every 3 hours · View all reads

All ⚡ AI Lessons (10712) ArXiv cs.AIDev.to · FORUM WEBDev.to AIForbes InnovationOpenAI NewsHugging Face Blog
JWT Authentication: Securing API Routes with JSON Web Tokens in FastAPI
Dev.to · Fiyinfoluwa Ojo 1mo ago
JWT Authentication: Securing API Routes with JSON Web Tokens in FastAPI
What is JWT? A JSON Web Token (JWT) is a compact, self-contained token that proves who...
User Model & Auth Basics: password Hashing with Bcrypt in FastAPI
Dev.to · Fiyinfoluwa Ojo 1mo ago
User Model & Auth Basics: password Hashing with Bcrypt in FastAPI
Never Store Passwords in Plain Text This is one of the most important rules in backend...
API Documentation: Auto-Generated Swagger & ReDoc with FastAPI
Dev.to · Fiyinfoluwa Ojo 1mo ago
API Documentation: Auto-Generated Swagger & ReDoc with FastAPI
Why API Documentation Matters Code tells you HOW something works. Documentation tells you...
Pagination & Filtering: Managing Large Datasets Efficiently with FastAPI
Dev.to · Fiyinfoluwa Ojo 1mo ago
Pagination & Filtering: Managing Large Datasets Efficiently with FastAPI
Why Pagination Matters Imagine an API returning 10,000 items at once. That's 10,000...
Global Error Handling: Consistent API Error Responses with FastAPI
Dev.to · Fiyinfoluwa Ojo 1mo ago
Global Error Handling: Consistent API Error Responses with FastAPI
Why Error Handling Matters Without proper error handling, your API either crashes or...
DELETE /items/:id: Removing Data from Your API with FastAPI
Dev.to · Fiyinfoluwa Ojo 1mo ago
DELETE /items/:id: Removing Data from Your API with FastAPI
The D in CRUD Today we complete another piece of CRUD : DELETE. Removing data cleanly and...
POST /items: Adding New Data to Your API with FastAPI & Pydantic
Dev.to · Fiyinfoluwa Ojo 1mo ago
POST /items: Adding New Data to Your API with FastAPI & Pydantic
From Read-Only to Interactive Until now our API could only read data. Today we add the...
Serializers & DTOs: Controlling What Your API Exposes
Dev.to · Fiyinfoluwa Ojo 1mo ago
Serializers & DTOs: Controlling What Your API Exposes
What is a DTO? A DTO (Data Transfer Object) controls exactly what data leaves your API....
Routing & Controllers: Handling Dynamic Data in URLs
Dev.to · Fiyinfoluwa Ojo 1mo ago
Routing & Controllers: Handling Dynamic Data in URLs
What are Dynamic Routes? Static routes like /about always return the same thing. Dynamic...