GenerateSecuredAuthenticationKey[]
generates a new anonymous SecuredAuthenticationKey owned by the current user ID.
GenerateSecuredAuthenticationKey["name"]
generates a new SecuredAuthenticationKey with the specified name owned by the current user ID.
GenerateSecuredAuthenticationKey[SecuredAuthenticationKey[…]]
generates a new set of credentials for an existing SecuredAuthenticationKey.
GenerateSecuredAuthenticationKey
GenerateSecuredAuthenticationKey[]
generates a new anonymous SecuredAuthenticationKey owned by the current user ID.
GenerateSecuredAuthenticationKey["name"]
generates a new SecuredAuthenticationKey with the specified name owned by the current user ID.
GenerateSecuredAuthenticationKey[SecuredAuthenticationKey[…]]
generates a new set of credentials for an existing SecuredAuthenticationKey.
Details
- GenerateSecuredAuthenticationKey returns an unauthenticated SecuredAuthenticationKey.
Examples
Basic Examples (2)
Create a new SecuredAuthenticationKey owned by the current user:
key = GenerateSecuredAuthenticationKey[]Create a named SecuredAuthenticationKey:
appkey = GenerateSecuredAuthenticationKey["TestApp01"]Keys that are no longer needed can be deleted with DeleteObject:
DeleteObject /@ {key, appkey}Generate a new set of consumer credentials for a given SecuredAuthenticationKey:
sak = SecuredAuthenticationKey[Association["Name" -> "TestApp01", "ApplicationID" -> 65667,
"LocallyEnabled" -> True, "RequestTokenURL" -> "https://account.wolfram.com/auth/request-token",
"AccessTokenURL" -> "https://account.wolfram.com/auth/access-token", "OAuthVersion" -> "1.0a",
"OAuthType" -> "TwoLegged", "ConsumerKey" -> "myKey", "ConsumerSecret" -> "mySecret",
"SignatureMethod" -> {"HMAC", "SHA1"}, "TransmissionMethod" -> "Headers",
"UUID" -> "92597ac5-95b8-4e1e-8303-2bd76354accd"]];sak["ConsumerKey"]GenerateSecuredAuthenticationKey[sak]%["ConsumerKey"]Related Guides
History
Text
Wolfram Research (2018), GenerateSecuredAuthenticationKey, Wolfram Language function, https://reference.wolfram.com/language/ref/GenerateSecuredAuthenticationKey.html.
CMS
Wolfram Language. 2018. "GenerateSecuredAuthenticationKey." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/GenerateSecuredAuthenticationKey.html.
APA
Wolfram Language. (2018). GenerateSecuredAuthenticationKey. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/GenerateSecuredAuthenticationKey.html
BibTeX
@misc{reference.wolfram_2026_generatesecuredauthenticationkey, author="Wolfram Research", title="{GenerateSecuredAuthenticationKey}", year="2018", howpublished="\url{https://reference.wolfram.com/language/ref/GenerateSecuredAuthenticationKey.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_generatesecuredauthenticationkey, organization={Wolfram Research}, title={GenerateSecuredAuthenticationKey}, year={2018}, url={https://reference.wolfram.com/language/ref/GenerateSecuredAuthenticationKey.html}, note=[Accessed: 13-June-2026]}