Coder Social home page Coder Social logo

flask-restful-user-management-example's Introduction

Flask-RESTful user registration example

What?

A proof of concept user registration API service that uses Flask-RESTful aswell as bits of Flask-Security and friends.

Users are able to sign up, confirm, authenticate and view a URL which requires an authenticated session.

Why?

I wanted to build an HTTP API service which allows for clients to perform user registration and management. First though, I needed to build a proof of concept.

How?

Server

Build the virtualenv:

$ make build

Run the service:

$ make run

The API server will be listening on 127.0.0.1:5000. Ensure you have an SMTP server listening on localhost:25.

Client

Register an account:

$ curl -X POST -H 'Content-Type: application/json' http://127.0.0.1:5000/account/register -d '{"email": "[email protected]", "password": "s3cr3t"}'

Click on confirmation link that is sent to [email protected].

Login and generate an authentication token:

$ curl -X GET -H 'Content-Type: application/json' http://127.0.0.1:5000/account/login -u '[email protected]:s3cr3t'

Use the token to authenticate and view account/info:

$ curl -X GET -H 'Content-Type: application/json'  -H "Authentication-Token: TOKEN" http://127.0.0.1:5000/account/info

client.py has an ApiAuth class which uses requests to perform the initial basic authentication, store the token to disk and access account/info:

$ venv/bin/python client.py --api-url=http://127.0.0.1:5000 [email protected] --password=s3cr3t

flask-restful-user-management-example's People

Contributors

rene00 avatar

Stargazers

 avatar

Watchers

 avatar  avatar

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.