Skip to content

Commit

Permalink
v1.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
katoretb committed Aug 6, 2024
1 parent e0b782a commit bbfb2e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion api/src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,5 +125,6 @@ def custom_expired_token_response(jwt_header, jwt_payload):

# start api server
if __name__ == "__main__":
app.run(debug=isDev, host=config['HOST'], port=int(config['PORT']))
# app.run(debug=isDev, host=config['HOST'], port=int(config['PORT']))
app.run(debug=True, host=config['HOST'], port=int(config['PORT']))

5 changes: 4 additions & 1 deletion api/src/route/api/glob/auth/callback_POST.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def main():
# cred = request.json['credential']


print(cred)

if cred is not None:
try:
Expand All @@ -74,7 +75,9 @@ def main():

if cred is not None:
DMS = decrypted_message.split("_")

print(decrypted_message)
print(DMS)

if len(DMS) != 3:
return jsonify({
'success': False,
Expand Down

0 comments on commit bbfb2e5

Please sign in to comment.