2013-07-03 88 views
0

我想通過使用contentClass屬性在筆記本中只讀筆記。Evernote使用contentClass只讀筆記

我的代碼如下:

我可以設置其他屬性,但只要我嘗試設置內容類,它拋出上創建筆記的EDAM例外。 (公司與應用程序的名稱已更改)

attrib = Types.NoteAttributes() 
attrib.sourceApplication = 'Company_evernoteApp' 
attrib.source = 'Company' 
attrib.contentClass = 'Company.App' 
new_note.attributes = attrib 

這是引發錯誤:後來

evernote.edam.error.ttypes.EDAMUserException: EDAMUserException(errorCode=2, parameter='NoteAttributes.contentClass') 

的代碼時,我嘗試撥打:

new_note = note_store.createNote(new_note) 

我使用contentClass對不對?

回答

1

用法似乎很好。 errorCode = 2表示contentClass的格式錯誤。

它必須遵循的正則表達式是here

+0

是的,我的格式已關閉。謝謝! – tknickman

相關問題