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 5d25462 commit 9f36be9Copy full SHA for 9f36be9
include/jwt-cpp/jwt.h
@@ -3502,6 +3502,14 @@ namespace jwt {
3502
}
3503
3504
bool empty() const noexcept { return jwk_claims.empty(); }
3505
+
3506
+ /**
3507
+ * Get all jwk claims
3508
+ * \return Map of claims
3509
+ */
3510
+ std::unordered_map<typename json_traits::string_type, basic_claim_t> get_claims() const {
3511
+ return this->jwk_claims.get_claims();
3512
+ }
3513
};
3514
3515
/**
0 commit comments