10Duke Scale C++ Client
Loading...
Searching...
No Matches
OAuthBackendConfiguration.h
1#ifndef TENDUKE_OAUTH_OAUTHBACKENDCONFIGURATION_H
2#define TENDUKE_OAUTH_OAUTHBACKENDCONFIGURATION_H
3
4#include "crypto/PublicKey.h"
5
6#include <memory>
7#include <string>
8#include <utility>
9
10namespace tenduke { namespace oauth {
11
12
43
44
45}}
46
47#endif // TENDUKE_OAUTH_OAUTHBACKENDCONFIGURATION_H
Container for OAuth-backend configuration.
Definition OAuthBackendConfiguration.h:17
const std::string tokenEndpointUrl
URL for the OAuth 2 token endpoint.
Definition OAuthBackendConfiguration.h:41
const std::string deviceAuthorizationEndpointUrl
URL for the OAuth 2 device authorization endpoint.
Definition OAuthBackendConfiguration.h:38
const std::string authorizationEndpointUrl
URL for the OAuth 2 authorization endpoint.
Definition OAuthBackendConfiguration.h:35
OAuthBackendConfiguration(std::string authorizationEndpointUrl, std::string tokenEndpointUrl, std::string deviceAuthorizationEndpointUrl="")
Constructs new instance.
Definition OAuthBackendConfiguration.h:25
OAuth services.
Definition AccessTokenRequestAuthenticator.h:8
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7