Context.io PHP API Giving Error

201 Views Asked by At

I have run into a problem with the Context.io API. I keep getting the following error message:

Warning: Invalid argument supplied for foreach() in /usr/share/nginx/html/custom-assets/includes/ContextIO/demo.php on line 11

Here is my php code:

// Require the Context.io PHP Library
require('class.contextio.php');

// See https://console.context.io/#settings to get your consumer key and consumer secret.
$contextIO = new ContextIO('consumer key','consumer secret');
$accountId = 'xxxxxxxxxx'; // Account ID of email account

$args = array('folder' => 'Inbox', 'include_flags' => 1, 'include_thread_size' => 1, 'include_body' => 1, 'limit' => 50);
echo "Getting last 50 messages...<br><br>";
$r = $contextIO->listMessages($accountId, $args);
if ($r !== false) {
    foreach ($r->getData() as $message) {
        echo "Subject: ".$message['subject']."<br>";
    }
} else {
    var_dump($r);
}

I have no clue why this is not working. Anybody have any clue why?

1

There are 1 best solutions below

3
On

All of the functions in the ContextIO library return a ContextIOResponse object, or false if the API returns an http error code. If you add a check for if($r !== false) before you call getData() it should catch any errors.