BFF と API ゲートウェイの連携部分のサンプル
pip install -r requirements.txt
curl -X POST -H "Content-Type: application/json" -d '{"username": "user1", "password": "password1"}' http://localhost:2000/bff/login
# {
# "token": "Bearer 37d8e0684f9d11636765fa38280bbe8b"
# }
curl -X GET -H "Authorization: Bearer 37d8e0684f9d11636765fa38280bbe8b" http://localhost:2000/bff/resource
# {
# "message": "This is the resource for user1"
# }
curl -X GET -H "Authorization: invalid_token" http://localhost:2000/bff/resource
# {
# "message": "Unauthorized"
# }
curl -X GET -H "Authorization: Bearer invalid_token" http://localhost:2000/bff/resource
# {
# "message": "Invalid token"
# }
- Fork it ( https://github.com/zdogma/bff_api_gateway_example/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request