REST.Authenticator.OAuth.TOAuth1Authenticator.GenerateNonce
Delphi
class function GenerateNonce: string; virtual;
C++
__classmethod virtual System::UnicodeString __fastcall GenerateNonce();
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | protected | REST.Authenticator.OAuth.pas REST.Authenticator.OAuth.hpp |
REST.Authenticator.OAuth | TOAuth1Authenticator |
Description
Returns the generated Nonce of a REST request.
GenerateNonce creates a new random Nonce string value, by concatenating the timestamp and a random integer value.
The Nonce value is unique for all requests with a timestamp.
See Also
- REST.Authenticator.OAuth.TOAuth1Authenticator.Nonce
- REST.Authenticator.OAuth.TOAuth1Authenticator.GenerateTimeStamp
- REST.Authenticator.OAuth.TOAuth1Authenticator.RequestToken
- REST.Authenticator.OAuth.TOAuth1Authenticator.AccessTokenSecret
- REST.Authenticator.OAuth.TOAuth1Authenticator.AuthenticationEndpoint
- http://oauth.net/core/1.0a/