我被要求處理web鉤子概念。我對這個概念很陌生,我需要你的幫助。我被要求爲公司提供一個URL,以便他們可以從他們的網站發送json數據。在PHP中的hubspot webhook問題
到目前爲止,我發現這一點:
// Initiate curl
$ch = curl_init();
// Disable SSL verification
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
// Will return the response, if false it print the response
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Set the url
curl_setopt($ch, CURLOPT_URL,$url);
// Execute
$result=curl_exec($ch);
// Closing
curl_close($ch);
// Will dump a beauty json :3
var_dump(json_decode($result, true));
這樣的URL與此相同PHP文件?我很困惑。謝謝