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對不對?
是的,我的格式已關閉。謝謝! – tknickman