I’m trying to study this documenation about getting the hash value. I have this setup
In my backend code. I have this code
$auth = $request->headers->get(‘X-HubSpot-Signature’);
$ve = $request->headers->get(‘X-HubSpot-Signature-Version’);
$email = $request->query->get(‘email’);
$http_method = ‘POST’;
$http_uri = ‘https://evil-yak-56.loca.lt/hubspot/test’;
$client = “bf62d6d3-zzzd-4fbe-817f-33444x475634”;
$request_body = ‘{“email":"sample+n2@gmail.com”}’;
$merge = $client . $http_method . $http_uri . $request_body;
$myHash = hash(‘sha256’, $merge);
I can’t compare the hubspot signature value in $myHash. I don’t know where i can see my body request. May I know also what are the missing data that I need to add in my $request_body.

