ソースを参照

Add character endpoint to server

Frans Bergman 7 年 前
コミット
d1d81f626d
1 ファイル変更5 行追加0 行削除
  1. 5 0
      server/wac/rest.py

+ 5 - 0
server/wac/rest.py

@@ -27,6 +27,11 @@ def search(query):
 def realms(region):
     return jsonify([realm['name'] for realm in api.get_json("/wow/realm/status", url="https://{}.api.battle.net".format(region))['realms']])
 
+@app.route("/character/<region>/<realm>/<name>")
+@cross_origin()
+def character(region, realm, name):
+    return jsonify(api.get_json("/wow/character/{}/{}".format(realm, name), url="https://{}.api.battle.net".format(region)))
+
 @app.after_request
 def apply_json(response):
     response.headers["Content-Type"] = "application/json"