Alternative approaches to Android application development—those that involve writing no code at all or writing only minimal amounts of code—are becoming increasingly feasible today. They are, of course, ideal for non-programmers, but experienced programmers too can use them to save time and effort. In this tutorial, I’m going to talk about two such approaches and… Continue reading How to Create an Android App Without Coding
Tag: JWT
JWT Authentication in Django
This tutorial will give an introduction to JSON Web Tokens (JWT) and how to implement JWT authentication in Django. What Is JWT? JWT is an encoded JSON string that is passed in headers to authenticate requests. It is usually obtained by hashing JSON data with a secret key. This means that the server doesn’t need… Continue reading JWT Authentication in Django