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