1#ifndef TENDUKE_OAUTH_ROPG_RESOURCEOWNERPASSWORDCREDENTIALSPROVIDER_H 
    2#define TENDUKE_OAUTH_ROPG_RESOURCEOWNERPASSWORDCREDENTIALSPROVIDER_H 
   11struct ResourceOwnerPasswordCredentials
 
   13    ResourceOwnerPasswordCredentials(
 
   14            const std::string &username,
 
   15            const std::string &password
 
   16    ) : username(username)
 
 
A callback, which returns the credentials to use in Resource Owner Password Credentials Grant.
Definition ResourceOwnerPasswordCredentialsProvider.h:32
 
virtual ResourceOwnerPasswordCredentials getCredentials() const =0
Returns the credentials.
 
OAuth services.
Definition AccessTokenRequestAuthenticator.h:8
 
Root for classes, functions and globals of 10Duke C++ Client.
Definition APIRequest.h:4
 
Credentials for Resource Owner Password Credentials Grant.
Definition ResourceOwnerPasswordCredentialsProvider.h:12