flask-rest-jsonapi
flask-rest-jsonapi copied to clipboard
Flask extension to build REST APIs around JSONAPI 1.0 specification.
As per JSON:api specification the the attributes like first-name should be dashed ( - ) but in the example here http://flask-rest-jsonapi.readthedocs.io/en/stable/ first_name ( with underscore ) is used. This is...
https://github.com/miLibris/flask-rest-jsonapi/blob/ac83e68dbd83a48158f611ce6bc7205043bf1800/flask_rest_jsonapi/resource.py#L128 If a user is using a dictionary and passes `get_schema_kwargs`, the update is mutably resulting in unexpected behaviour because the user might want to user the same dictionary somewhere...
Hi, can someone help me designing requests with bearer token which I got from authorization endpoint from my Auth provider to access flask-rest-jsonapi resources which I have protected with oauth....
Hi, in my application, I use `before_marshmallow` to set the schema based on a user type, in overall it works well, but I faced a few difficulties: 1. I have...
I'm not exactly aware, where to point to in the changelogs, but in an pull request from June they removed the `MethodViewType` class: https://github.com/pallets/flask/pull/4624 So the import of this class...
Flask 2.2.x removed the MethodViewType metaclass from which ResourceMeta currently inherits. Fix by inheriting from type(MethodView) instead. Fixes: #212 Fixed-by: James Wu
Updates make this compatible with flask version 3
We need to install globally flask-rest-jsonapi flask-rest-jsonapi is available from https://pypi.org/ (with sudo pip3 install) The reason why the pip install command doesn’t work in Ubuntu >23.04 is down to...