Hi Team,
How can i generate signature key(Used for api call) in php technology can any one help me please ?
@EMFI
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
https://php.net/manual/en/function.hash-hmac.php
@Irfan.Khan
Thankyou