How to use POST request in PHP with FullContactAPI for Batch Requests?

966 Views Asked by At

I am not able to request for data in batch from fullcontact API. The response received is "invalid query object" using the following code:

$urltopost = "https://api.fullcontact.com/v2/batch.json?apiKey=xxxxxxxxxx";
$datatopost = array (
    "requests" => '["https://api.fullcontact.com/v2/[email protected]","htps://api.fullcontact.com/v2/[email protected]"]'
);
$header=array("content-type"=>"application/json");
$ch = curl_init ($urltopost);
curl_setopt ($ch, CURLOPT_POST, true);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $datatopost);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt ($ch, CURLOPT_HTTPHEADER, $header);
$returndata = curl_exec ($ch);
print_r($returndata);

Writing the shell execution which worked correctly.

curl --request POST "https://api.fullcontact.com/v2/batch.json?apiKey=xxxxxxxxxx" --data '{'requests':["https://api.fullcontact.com/v2/[email protected]","https://api.fullcontact.com/v2/[email protected]"]}' --header 'content-type:application/json'

But I don't want to call shell_exec from php to do this. I want cURL functions to work. What's going wrong?

3

There are 3 best solutions below

0
On BEST ANSWER

Ok. So I think I found my own answer. I just had to change that array into string. And it worked perfectly.

$datatopost = '{"requests":["https://api.fullcontact.com/v2/[email protected]","https://api.fullcontact.com/v2/[email protected]"]}';
0
On

can you try removing the single quotes from the request array.

"requests" => ["https://api.fullcontact.com/v2/[email protected]","htps://api.fullcontact.com/v2/[email protected]"]
0
On

Try this, i have tested it and worked fine. No need to send data in post method

$urltopost = "https://api.fullcontact.com/v2/person.json?apiKey=xxxxxxxxxx&[email protected]&method=email";

$header=array("content-type"=>"application/json");
$ch = curl_init ($urltopost);
curl_setopt ($ch, CURLOPT_POST, true);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt ($ch, CURLOPT_HTTPHEADER, $header);
$returndata = curl_exec ($ch);
print_r($returndata);