Jump to content

whmcs external api Authorization Required error please help I have added the server ip to security


bilal186

Recommended Posts

<?php

/* *** WHMCS JSON API Sample Code *** */

 

$url = "http://cloudonclick.com/wh-admin/includes/api.php"; # URL to WHMCS API file goes here

 

 

$postfields = array();

 

 

$postfields["action"] = "validatelogin";

$postfields["email"] = "test@test.com";

$postfields["password2"] = "123456";

 

 

$query_string = "";

foreach ($postfields AS $k=>$v) $query_string .= "$k=".urlencode($v)."&";

 

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_POST, 1);

curl_setopt($ch, CURLOPT_TIMEOUT, 30);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($ch, CURLOPT_POSTFIELDS, $query_string);

curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);

$jsondata = curl_exec($ch);

if (curl_error($ch)) die("Connection Error: ".curl_errno($ch).' - '.curl_error($ch));

curl_close($ch);

 

$arr = json_decode($jsondata); # Decode JSON String

 

print_r($arr); # Output XML Response as Array

 

 

//Debug Output - Uncomment if needed to troubleshoot problems

echo "<textarea rows=50 cols=100>Request: ".print_r($postfields,true);

echo "\nResponse: ".htmlentities($jsondata)."\n\nArray: ".print_r($arr,true);

echo "</textarea>";

 

 

?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated