2013-03-26 103 views
0

我已成功完成Evernote與PHP的認證。Evernote與PHP集成

我有這個迴應。

Array ([oauth_token] => S=s1:U=6316e:E=144fcfdfdb9:C=13da54cd1ba:P=185:A=maheshchari-2599:V=2:H=6da806fe92b9289cf0334f04e2afdc55 [oauth_token_secret] => [edam_shard] => s1 [edam_userId] => 405870 [edam_expires] => 1395813907897 [edam_noteStoreUrl] => https://sandbox.evernote.com/shard/s1/notestore [edam_webApiUrlPrefix] => https://sandbox.evernote.com/shard/s1/) 

現在,我想要使用evernote進行身份驗證的用戶的筆記本列表。

我在網上做了大量的研究,但我找不到任何有用的東西,我已經知道,guid是必要的,以獲得筆記本列表。

從哪裏可以找到?我如何訪問notestore和userstore?

如何調用notestore和userstore的函數來獲取用戶的帳戶和用戶的筆記在PHP中的數據?

在此先感謝。

回答

1

使用Evernote SDK for PHP,你可以列出像下面的方式筆記本:

$client = new Client(array('token' => $authToken)); 
$noteStore = $client->getNoteStore(); 
$notebooks = $noteStore->listNotebooks(); 

所有的API引用可以發現here

此外,你不應該公開你的令牌。請確保您放置的令牌字符串不能再使用。如果你需要更多的幫助,你可以得到supports from Evernote developer support