Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The example of proxy api is poor. #1109

Open
mdtrooper opened this issue May 20, 2024 · 0 comments
Open

The example of proxy api is poor. #1109

mdtrooper opened this issue May 20, 2024 · 0 comments

Comments

@mdtrooper
Copy link

I am trying to replicate and it does not run.

I have a tiny example (that it does not run too):

The small api in python3 with flask (it runs):

from flask import Flask, jsonify

app = Flask(name)

@app.route('/api/foobar', methods=['GET'])
def foobar():
    data = {
        "name": "John Doe",
        "email": "[email protected]",
        "roles": ["admin", "user"]
    }
    return jsonify(data)

if name == 'main':
    app.run(port=8000)

And the config for api proxy (it does not run):

{
  "/proxy/api/foobar": {
    "target": "http://localhost:8000/",
    "pathRewrite": {
      "^/proxy/api/foobar": "/api/foobar"
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant