Joseph Moorhouse
Results
2
issues of
Joseph Moorhouse
### **Code** ```python from flask import Flask from flask_restx import Api, Resource from werkzeug.middleware.proxy_fix import ProxyFix app = Flask(__name__) app.wsgi_app = ProxyFix(app.wsgi_app) api = Api( app, version="1.0", title="Foo", description="A simple...
bug
### Jose version `3.2.0` ### Problem/Question Token expiration. I was expecting the following token to raise an expiration error. ```python from datetime import datetime from jose import jwt token =...