FastAPI - Authentication and Security
Given this code snippet, what will be the output of
print(token)?
from jose import jwt
payload = {"user_id": 123}
secret = "mysecret"
token = jwt.encode(payload, secret, algorithm="HS256")
print(token)