diff --git a/stacosys/interface/api.py b/stacosys/interface/api.py index 22735c5..5997250 100644 --- a/stacosys/interface/api.py +++ b/stacosys/interface/api.py @@ -19,9 +19,6 @@ def ping(): @app.route("/comments", methods=["GET"]) def query_comments(): comments = [] - token = request.args.get("token", "") - if token != app.config.get("SITE_TOKEN"): - abort(401) url = request.args.get("url", "") logger.info("retrieve comments for url %s" % url)