Skip to content

Instantly share code, notes, and snippets.

@InspectorGadget
Created February 23, 2020 16:35
Show Gist options
  • Save InspectorGadget/880fb2702854f4f2de9775646e50c72b to your computer and use it in GitHub Desktop.
Save InspectorGadget/880fb2702854f4f2de9775646e50c72b to your computer and use it in GitHub Desktop.
<?php
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => $this->getHook(),
CURLOPT_HTTPHEADER => array("Content-Type: application/json"),
CURLOPT_SSL_VERIFYHOST => 0,
CURLOPT_SSL_VERIFYPEER => 0,
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => json_encode($data)
));
<?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment