0

こんにちは、メールを取得するために contextIO API を使用しています。GitHub からコードを取得しましたが、いくつかのエラーが表示されます。このコードを使用しています。

include_once("class.contextio.php");

// see https://console.context.io/#settings to get your consumer key and consumer secret.
$contextIO = new ContextIO('asssasas','sdsd1111sdsdsd');
$accountId = null;

// list your accounts
$r = $contextIO->listAccounts();//print_r($r);
foreach ($r->getData() as $account) {
    echo $account['id'] . "\t" . join(", ", $account['email_addresses']) . "\n";
    if (is_null($accountId)) {
        $accountId = $account['id'];
    }
}

しかし、それはエラーを示しています

Fatal error: Call to a member function getData() on a non-object

個別の Gmail 認証が必要ですか? 誰でも私を助けてください

4

1 に答える 1