We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c261af8 commit 21ac449Copy full SHA for 21ac449
appengine/standard/firebase/firenotes/backend/firebase_helper.py
@@ -111,7 +111,9 @@ def verify_auth_token(request):
111
request_jwt,
112
public_key,
113
algorithms=['RS256'],
114
- audience=os.environ['FIREBASE_PROJECT_ID'])
+ audience=os.environ['FIREBASE_PROJECT_ID'],
115
+ issuer="https://securetoken.google.com/"
116
+ + os.environ['FIREBASE_PROJECT_ID'])
117
except jwt.exceptions.InvalidTokenError as e:
118
logging.warning('JWT verification failed: {}'.format(e))
119
return None
0 commit comments