Hi Team,
we are using the marvel developer APIs for QA hiring purpose but we observed hash issues, who we will create the hash in the API.
You can create account from “https://developer.marvel.com/account” website if doesn’t have already.
End Point: https://gateway.marvel.com:443/v1/public/characters
Error occurred and says
To remove error, we need to give the public key as a parameter as highlighted below
When I added public key as parameter, I got the error as “hash unavailable”
Could you please suggest how we can create hash parameter
I found something from google but not exact the same
-
hash - a md5 digest of the ts parameter, your private key and your public key (e.g. md5(ts+privateKey+publicKey)
CryptoJS.MD5(timestamp+privateKey+publicKey)
Could someone please let me know I can create hash from timestamp, private and public key.