Last active
April 23, 2019 20:16
-
-
Save bonustrack/ba0202345808a1d1216c1ec02668c0b1 to your computer and use it in GitHub Desktop.
Generate secret hash for SteemConnect application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const crypto = require('crypto'); | |
const secret = 'random string'; | |
const secretHash = crypto.createHash('sha256').update(secret).digest('hex'); | |
console.log('Secret hash', secretHash); |
where do i put this code not working for me
do i need th link script to it
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Once you've generated the secret hash, you need to add it on your app account
json_metadata
field using this page: https://steemconnect.com/sign/profile-update?secret=SECRET_HASH