共享沙盒帐户笔记本

时间:2019-09-21 14:01:24

标签: python sandbox evernote evernote-app-notebook

我已经在Evernote上使用与我的普通帐户相同的凭据创建了一个沙箱帐户,并且在笔记本中的沙箱帐户上保存了很多文章。我正在尝试通过我的普通帐户访问此笔记本,但是该笔记本没有出现在这里。我怎么看?另外,我需要在Evernote上与其他用户共享此笔记本。能做到吗 顺便说一句,我还没有发布我的API密钥。会以某种方式要求吗?

https://dev.evernote.com/doc/articles/notebook_sharing.php。 在链接的网页上尝试了两种方法,都没有用。

VueGoogleAutocomplete.vue:1 Failed to load module script: The server responded with a non-JavaScript MIME type of "application/octet-stream". Strict MIME type checking is enforced for module scripts per HTML spec.
# Below, `notebook` is an instance of Types.Notebook representing
# a notebook that already exists in Evernote

sharedNotebook = Types.SharedNotebook()
sharedNotebook.notebookGuid = notebook.guid
sharedNotebook.allowPreview = True
sharedNotebook.privilege = Types.SharedNotebookPrivilegeLevel.MODIFY_NOTEBOOK_PLUS_ACTIVITY
sharedNotebook.email = "fakey@mcnotreal.com"

try:
    sharedNotebook = note_store.createSharedNotebook(sharedNotebook)
except Exception, e:
    print "Error creating shared notebook:"
    print type(e)
    print e
    raise SystemExit

我需要能够在普通帐户上查看和编辑沙盒帐户笔记本。

0 个答案:

没有答案
相关问题