We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34b4f65 commit 08f0b6bCopy full SHA for 08f0b6b
index.js
@@ -58,7 +58,8 @@ function TuyaCloud(options) {
58
if (options.apiEtVersion) {
59
debug('using new API');
60
if (!options.secret2 || !options.certSign ||
61
- options.secret2.length !== 32 || options.certSign.length !== 95) {
+ // OEM apps (such as Ledvance and Sylvania) use the single letter "A" instead of a certificate signature.
62
+ options.secret2.length !== 32 || (options.certSign.length !== 95 && (options.certSign.length != 1 || options.certSign != 'A'))) {
63
throw new Error('New API: invalid format for secret2 or certSign');
64
} else {
65
this.keyHmac = options.certSign + '_' + options.secret2 + '_' + options.secret;
0 commit comments