Hi.
I’m developing a skill in Alexa that modifies the Shadow document through a lambda function.
In the Shadow demo there is a parameter called client token,
#define SHADOW_DESIRED_JSON \
"{" \
"\"state\":{" \
"\"desired\":{" \
"\"powerOn\":%02d" \
"}" \
"}," \
"\"clientToken\":\"%06lu\"" \ <--------------------------------
"}"
Is this parameter the same user account ID of an Alexa account?
If not, how can I identify the user for each hardware that uses the Shadow demo with the clientToken?
I want something simple, for the moment. I know that there are more secure and complex methods, where the hardware saves an ID in a DynamoDB account, and then from a mobile app it is linked to the account, and there is an identification.
I know this is safer and more professional, but for the moment I want something simple.
it’s possible?