使用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;
}
答案 0 :(得分:0)
您的代码在哪里失败?看起来你可能只是在做同等检查错误,$notebook_object->name = 'myname'
是一项任务。您可能需要strcasecmp之类的内容。