● What SOA is, exactly. ● Why SOA is awesome. ● The most import rule. ● How to build reliable services. ● How to make faster services. ● How to scale Flask services. ● The biggest SOA issue. ● How to have more fun. What I’ll Cover
Users Service GET /users Returns a list of all user accounts. GET /users/ Returns the user identified by uid. POST /users Create a new user. POST /users/authenticate Authenticate a user. PUT /users/ Update a user account identified by uid. PATCH /users/ Update a user account identified by uid. DELETE /users/ Delete a user identified by uid.
Flask-Security ● Works with SQLAlchemy. ● Configurable. ● Password reset. ● Basic Authentication (with email / password). ● Token authentication. ● Self hosted. ● You have to build the API around it yourself.