Questions tagged [evernote-app-notebook]

For questions related to the Evernote App Notebook feature of the Evernote API that restricts app access to only a single notebook

The Evernote App Notebook is a feature to restrict your app to only be able to use a single notebook, the app notebook.

You can find the documentation on the feature here.

23 questions
2
votes
1 answer

Cannot read properties of undefined (reading *)

Hey I am learning reactjs as much as i have learned I am trying to make note app my code given below my App.js file import React , {useEffect, useState} from "react" import { nanoid } from "nanoid" import Editor from './Note/Editor' import Sidebar…
Kush
  • 41
  • 1
  • 5
2
votes
0 answers

How To Fix Evernote findNotesMetadata() Returning { "errorCode": 3, "parameter": "authenticationToken" } In NodeJs

Using evernote's JS-SDK I've been successful in authenticating and authorizing third party client and fetching their notebooks, But when trying to search note using search queries i kept getting { "errorCode": 3, "parameter":…
MSadiq
  • 167
  • 11
2
votes
1 answer

Developer production token

I would like to access my user account with my developer token, but this is not possible because with my current dev token I can only access the sandbox and I can not generate a production token because this service is disabled. How can I proceed?
grguido
  • 21
  • 2
1
vote
1 answer

Fixing "Error in Thrift HTTP response: 301" in Evernote JS-SDK

I am creating a a node REST API which will authenticate EVERNOTE with my app through Oauth as a third part client. I have passed every authentication stage ( oauthToken and oauthAccessToken) and even got authorization mail sent to the evernote's…
MSadiq
  • 167
  • 11
1
vote
1 answer

Sandbox=False breaks OAuth in Evernote Application

I have this app that I've built, which scrapes recipes and adds them to evernote. Link here. In the EvernotePy folder, there is a python3 script called Add_to_Evernote.py that interfaces with the API. When I have Sandbox = True, then it works like…
1
vote
1 answer

How to get Text from a Evernote note in iOS

I am trying to download only image and text(probably HTML string) of a Evernote's note in my iOS app. I have successfully downloaded image from a note . But I did not find any method or process which help me to get text which are written on the note…
1
vote
0 answers

How can I test LinkedNotebooks in the Evernote Sandbox?

I want to write an evernote integration for a webservice with read-only access to only one notebook per user. The only way to do this seems to create a user where the webservice has full access and then the users share their one notebook with that…
theTobias
  • 39
  • 7
0
votes
0 answers

Getting UserId and ShardId after Evernote authentication in C#

I'm developing a Windows client for some integration with Evernote desktop. In particular, I need to build locale (in-app) links to notes, which requires the userId and shardId (evernote:///view/[userId]/[shardId]/[noteGuid]/[noteGuid]/). Problem…
Vico
  • 196
  • 1
  • 7
0
votes
1 answer

Connecting application to a single notebook in Evernote, supportLinkedSandbox parameter

I am trying to limit access to one nootebook using supportLinkedSandbox=true parameter as it is described here: http://dev.evernote.com/doc/articles/app_notebook.php It seems this paramerter has no effect on sandbox environment.…
0
votes
1 answer

How can I specify ALL guids for getNoteWithResultSpec()?

New to evernote api using Ruby. Using the example to try to get a list of notes from notebooks. That example seems pretty messed up though so I don't think I'm properly configured. I'm stuck on what to put to include content from this page,…
0
votes
1 answer

Evernote python django- how to get listNotebooks() ?

I followed the instructions and got the access token. Yet when I use their sample code to call listNotebooks() I get 3 things -- "notes", "documents" and "web clippings" in a list. There are no names of actual notebooks. There is also no error. How…
user1782328
  • 53
  • 1
  • 6
0
votes
1 answer

How can I untag from a note in Evernote Swift SDK?

I want to delete all tags from a note using Evernote swift SDK. Here is my code, but I cannot delete them with this, any way to do that? ENSession.shared.download(noteRef!, progress: nil) { (note: ENNote?, error: Error?) in if error == nil { …
Umeumeume
  • 1,952
  • 3
  • 21
  • 40
0
votes
1 answer

How do I sent an Android intent to save the current note in evernote so that a new one can created with another intent?

I currently use the following code to create a new Evernote Snapshot note: Intent intent = new Intent("com.evernote.action.NEW_SNAPSHOT"); startActivity(intent); If there's no note open this works great given that it brings up a new…
Christian
  • 25,249
  • 40
  • 134
  • 225
0
votes
1 answer

How to create a note with Attributes"ReminderTime"

I want to create a note with reminder, this is my code: 'Create a note locally. Dim myNote As New Note() myNote.Title = "Sample note with Reminder set" myNote.Content = "Hello, world - this note has a Reminder on it." myNote.Attributes.ReminderTime…
6lilu9
  • 1
  • 4
0
votes
1 answer

Evernote does not update note if a tag is deleted or added in that note

If I use noteStore.findNotesMetadata() to get recently updated or created notes, no note is received if only tag is updated. //sample python code noteStore = client.get_note_store() note_filter = NoteFilter() note_filter.notebookGuid =…
keshav
  • 734
  • 6
  • 19
1
2