Phil Seeman
Phil Seeman
Yeah - I'm pretty sure that's a function of the underlying Evernote API, not sure there's anything that can be done about it in the Windows SDK.
Good find. So my assessment was close - it looks like the issue is in the Thrift code generator. It looks like they patched Thrift there to resolve it; if...
I meant the latter, sorry for the ambiguity. Alas I've never generated anything with Thrift, either; I've just used the assemblies that the Evernote engineering team has generated.
Here is the code to create a new notebook. Note that this requires the Advanced API (i.e. it uses ENSessionAdvanced): ``` Notebook newNotebook = new Notebook(); newNotebook.Name = "My Newest...
(Sorry, did not mean to close the issue before verifying that you are all set here.)
There's nothing about the API that would cause it to exhibit different performance on Windows 8 vs 7, or on different machines; and I'm afraid I don't have any great...
One other thing: make sure you're not hitting the Evernote rate limit. If you're in the Production environment and hitting the limit, you'd see a delay longer than a few...
Not to my knowledge. I wrote the initial version but haven't worked on it in years. It was written before the existence of .NET Core and hasn't been updated, I'm...
Be sure you follow the instructions in the Getting Started Guide for referencing the SDK within Excel: > In order to use the SDK with COM, be sure to add...
Because retrieving all notebooks can be an expensive operation, the notebooks list is cached - the default validity interval for the cache is 5 minutes. After that time, calling listNotebooks...