Giter VIP home page Giter VIP logo

sawo-python-examples's Introduction

Sawo

Passwordless and OTP-less Authentication for your website. Check the documentaion here.

Installing

A step by step series of examples that tell you how to get a development env running. These instructions will let you render the form in your speicified container, and allow you to attach successful login callback for futher actions.

Install the sawo package

pip install sawo

From Sawo import createTemplate, getContext and verifyToken methods

The getContext method is used to create sawo dict object from data gain from DB in Django

from sawo import createTemplate,getContext,verifyToken

API Key

  • Login to sawo dev console
  • Create a new project
    • Set Project Name
    • Set Project Host
      • For dev: point to localhost
      • For prod: point to your domain.
  • Copy the API key

Setup

Getting started Creating template for sawo passwordless and OTP-less Authentication for your website.

Django
    createTemplate("<filepath>")

    #example
    createTemplate("templates/partials")
Flask
    createTemplate("./<filepath>",flask=True)

    #example
    createTemplate("./templates/partials",flask=True)

This will create a _sawo.html file in the filepath provided.

Using _sawo.html in your html files
Django
    {% include "<filepath>/_sawo.html" %}

    #example
    {% include "partials/_sawo.html" %}
Flask
    {% include "./<filepath>/_sawo.html" %}

    #example
    {% include "./partials/_sawo.html" %}
Sending data required by _sawo.html

The variable name used in _sawo.html template are sawo.auth_key, sawo.identifier and sawo.to so to send that data we create a json.

Note

  1. The "to" route should be a post route which can recive posted data.
  2. If you dont know how data is passed to templates in Django or Flask, We will suggest looking into it first.
Django
Method 1. Sending static data
    context = {
            "sawo": {
                "auth_key" : "<api_key>",
                "identifier":"email | phone_number_sms",
                "to":"<route>" #the route where you will recive the payload sent by sdk
                }
            }

    #exapmple
    context = {
            "sawo": {
                "auth_key" : "785ha-hdjsdsd-799-ss345",
                "identifier":"phone_number_sms",
                "to":"login" 
                }
            }
Method 2. Using admin and database to save config for sawo

Step 1. Creating fields for sawo api_key and identifier to set it from admin dashboard.

copy this code in models of your app

class Config(models.Model):
    api_key = models.CharField(max_length=200)
    identifier = models.CharField(max_length=100, choices=[("email","Email"),("phone_number_sms","Phone")])

Step 2. Setting up view.py of app.

Note: Route should be the reciving end where you can handle post request

from .models import Config
from sawo import getContext

def <yourfuntion>(request):
    config = Config.objects.order_by('-api_key')[:1]
    context = {
        "sawo":getContext(config,<route>)  #the route where you will recive the payload sent by sdk 
    }

#example
def index(request):
    config = Config.objects.order_by('-api_key')[:1]
    context = {
        "sawo":getContext(config,"login")
    }
Falsk
    sawo = {
            "auth_key" : "<api_key>",
            "identifier":"email | phone_number_sms",
            "to":"<route>" #the route where you will recive the payload sent by sdk
        }
    
    #exapmple
    sawo = {
            "auth_key" : "785ha-hdjsdsd-799-ss345",
            "identifier":"phone_number_sms",
            "to":"login" 
        }

Verifying Token

When the login is done on the webpage it sends the data to backend as payload to verify user, you can use verifyToken function, it returns a boolen.

Backend Code is ame for Django and Flask
    from sawo import verifyToken

    #use the methods provided by flask and django to recive data from post request
    #then use this funtion it will return True or False depending on user status
    verifyToken(payload)

    //example
    payload = <data from POST request>
    if(verifyToken(payload)):
        #do somthing
    else:
        #do somthing else

Tutorials

Django Tutorial - See Tutorial
Flask Tutorial - See Tutorial

Versioning

We use SemVer for versioning.

Authors

SAWO Labs - GitHub

License

This project is licensed under the MIT License

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.