Construct Signature
Method to construct signature variable from the payload
Option 1
import hashlib
signature = hashlib.md5(f"{transactionId}:{userId}:{secretKey}".encode('utf-8')).hexdigest())Option 2
NOTE:
Last updated
Method to construct signature variable from the payload
import hashlib
signature = hashlib.md5(f"{transactionId}:{userId}:{secretKey}".encode('utf-8')).hexdigest())Last updated
import hashlib
signature = hashlib.md5(f"{transactionId}:{clientId}:{secretKey}".encode('utf-8')).hexdigest())