从webhook获取Evernote笔记本名称

时间:2016-03-01 18:19:07

标签: php webhooks evernote

使用Cloud SDK PHP从Evernote运行webhook。 Webhooks提供" notebookGuid"我正在寻找使用getnotebook功能获取和使用笔记本名称的简单方法。以下是行不通的。

$guid = $_GET['notebookGuid']; //guid from webhook
$notebook_object = $noteStore->getNotebook($access_token, $guid); //tried with and without the $access_token

if ($notebook_object->name = 'myname') { //is name case-insensitive?
$dosomething=1;
}

1 个答案:

答案 0 :(得分:0)

您的代码在哪里失败?看起来你可能只是在做同等检查错误,$notebook_object->name = 'myname'是一项任务。您可能需要strcasecmp之类的内容。