Skip to content

Instantly share code, notes, and snippets.

@freshface
Created December 23, 2019 08:36
Show Gist options
  • Save freshface/4b92234b4d50409b0490a66a5f432ead to your computer and use it in GitHub Desktop.
Save freshface/4b92234b4d50409b0490a66a5f432ead to your computer and use it in GitHub Desktop.
$ch = curl_init('https://prod-69.westeurope.logic.azure.com:443/workflows/7f70c780055c4e9695f16ebf94a87e81/triggers/manual/paths/invoke?api-version=2016-06-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=FMFbPlGZBf25o-LpEZdWekKELjl7wrTp7A5GSY7ObO4');
        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array(
            'Content-Type: application/json',
            'Content-Length: ' . strlen($data_string))
        );
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
        $result = curl_exec($ch);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment