Hi Team,
How can i generate signature key(Used for api call) in php technology can any one help me please ?
Hi Team,
How can i generate signature key(Used for api call) in php technology can any one help me please ?
You can use the hash_hmac function in PHP to generate the HMAC signature.
For example:
$hmac = base64_encode (hash_hmac('sha256', $dataToSign, $secret, true);)
Please refer the PHP documentation for more info