mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-22 04:01:27 +00:00
Added response encoding
This commit is contained in:
parent
9dd3c4f33b
commit
7af2affaa8
2
main.py
2
main.py
|
@ -19,7 +19,7 @@ def getDkimKey():
|
|||
domain = domain.rstrip("\n")
|
||||
catProcess = subprocess.Popen(["cat", "/var/dkim/" + domain + ".selector.txt"], stdout=subprocess.PIPE)
|
||||
dkim = catProcess.communicate()[0]
|
||||
dkim = base64.b64encode(dkim.encode());
|
||||
dkim = base64.b64encode(dkim)
|
||||
print(dkim)
|
||||
return jsonify(dkim)
|
||||
@app.route("/pythonVersion", methods=["GET"])
|
||||
|
|
Loading…
Reference in a new issue