14enum class PkceCodeChallengeMethod {
20 std::string code_verifier;
21 std::string code_challenge;
22 PkceCodeChallengeMethod method = PkceCodeChallengeMethod::kS256;
Public wrapper around the SDK's private PKCE implementation.
Definition pkce.hpp:30
Shared result and error primitives used by the public cxxmcp SDK.
tl::expected< T, Error > Result
Alias for the SDK result type.
Definition result.hpp:64
PKCE verifier/challenge pair used by OAuth 2.1 authorization flows.
Definition pkce.hpp:19