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 c30afa2 commit a3b2771Copy full SHA for a3b2771
src/scitokens_internal.cpp
@@ -312,6 +312,9 @@ void
312
SciToken::deserialize(const std::string &data, const std::vector<std::string> allowed_issuers) {
313
m_decoded.reset(new jwt::decoded_jwt(data));
314
315
+ // Set all the claims
316
+ m_claims = m_decoded->get_payload_claims();
317
+
318
scitokens::Validator val;
319
val.add_allowed_issuers(allowed_issuers);
320
val.set_validate_all_claims_scitokens_1(false);
0 commit comments