Hello,
I have been trying to replicate the hashes we have generating in our report URLs and cannot match them. The following is an example of how I've come up with the hash encoding function:
Report Id = 289
Procedure Name = sp_DBR_examplereport
Folder Id = 32
No hidden parameters
Hash Seed = seed
SELECT SHA1(CONCAT('289','m32','seed'));
I have also tried variations like:
SELECT SHA1(CONCAT('289','seed'));
AND
SELECT SHA1(CONCAT('sp_DBR_examplereport','m32','seed'));
AND
SELECT SHA1(CONCAT('sp_DBR_examplereport','seed'));
We are currently running myDBR version 4.3.3. Any help with this function would be appreciated.
- Noah