http



JWT authentication using Laravel middleware

  • avatar
  • 2.1K Views
  • 1 Like
  • 6 mins read
Preview post image

Security is crucial in web development, and one widely used method for securing APIs and web applications is JSON Web Token (JWT) authentication. Laravel, a powerful PHP framework, offers robust support for JWT authentication, making it a popular choice among developers. In this guide, we'll explore the intricacies of JWT authentication in Laravel, from grasping the basics of JWT to implementing token decoding within Laravel middleware.

Basic authentication using Laravel middleware

  • avatar
  • 1.6K Views
  • 4 Likes
  • 4 mins read
Preview post image

Laravel, the PHP framework renowned for its simplicity and elegance, continues to be a top choice for developers worldwide. Among its many features, Laravel offers robust middleware functionality, allowing for seamless integration of authentication mechanisms. In this article, we'll explore the implementation of basic authentication using middleware in Laravel, investigating its benefits and practical applications.

Understanding OAuth 2.0 and how it works

  • avatar
  • 1.5K Views
  • 6 Likes
  • 4 mins read
Preview post image

OAuth is an open authorization protocol, which allows accessing the resources of the resource owner by enabling the client applications on HTTP services such as Google, Facebook, Twitter, GitHub, BitBucket, and a long etc... It allows sharing of resources stored on one site to another site without using user credentials. Username and password tokens are used instead. The access to the resource can be limited by defined and approved scope.

 Join Our Monthly Newsletter

Get the latest news and popular articles to your inbox every month

We never send SPAM nor unsolicited emails

Popular authentication methods for Applications

  • avatar
  • 403 Views
  • 8 mins read
Preview post image

Robust authentication methods are essential for securing access to sensitive information and resources within applications. Authentication serves as the initial barrier, ensuring only authorized users gain entry to protected areas. From traditional password-based authentication to advanced token-based systems and OAuth protocols, developers have a range of options to ensure the security of their applications. This article explores these authentication methods, highlighting their strengths, weaknesses, and best practices to assist developers in implementing secure and user-friendly authentication systems.

Install and configure Apache on Ubuntu

  • avatar
  • 992 Views
  • 1 Like
  • 5 mins read
Preview post image

Apache or Apache HTTP server is a free and open source web server, developed and maintained by the Apache Software Foundation. It is one of the most popular web servers in the world. Apache allows website developers to serve their content over the web and provides many powerful features that can be extended through additional modules.