Skip to content

Commit

Permalink
Updating API Call to Use New HTTPS Endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
populist committed Apr 20, 2016
1 parent 0ecf2ce commit ac13fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backtrac_visualregression/backtrac_visualregression.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
echo 'Starting a visual regresison test between the live and test environments...' . "\n";
$curl = curl_init();
$curl_options = array(
CURLOPT_URL => 'http://backtrac.io/api/project/' . $project_id . '/compare_prod_stage',
CURLOPT_URL => 'https://backtrac.io/api/project/' . $project_id . '/compare_prod_stage',
CURLOPT_HTTPHEADER => array('x-api-key: ' . $api_key),
CURLOPT_POST => 1,
CURLOPT_RETURNTRANSFER => 1,
Expand Down

0 comments on commit ac13fca

Please sign in to comment.