Code Monkey home page Code Monkey logo

evernote-sdk-java's People

Contributors

akhaku avatar arturdryomov avatar ebeeson avatar mikebroberts avatar rekotan avatar tyvsmith avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

evernote-sdk-java's Issues

申请完应用后获取authUrl提示密钥不对

使用网上给的key和密钥没有问题,自己申请的就报错;
org.scribe.exceptions.OAuthException: Response body is incorrect. Can't extract token and secret from this

static final EvernoteService EVERNOTE_SERVICE = EvernoteService.SANDBOX;

Class<? extends EvernoteApi> providerClass = EvernoteApi.Sandbox.class;
if (EVERNOTE_SERVICE == EvernoteService.PRODUCTION) {
providerClass = org.scribe.builder.api.EvernoteApi.class;
}
OAuthService service = new ServiceBuilder()
.provider(providerClass)
.apiKey(CONSUMER_KEY)
.apiSecret(CONSUMER_SECRET)
.callback(cbUrl)
.build();

    Token requestToken = service.getRequestToken();
    String oauthToken = requestToken.getToken();
    String oauthTokenSecret = requestToken.getSecret();
    String authUrl = service.getAuthorizationUrl(requestToken);
    System.out.println(authUrl);

是现在不能申请了应用了吗?

Concurrent delete notes not working

Hi,

I have 5 different NoteClients issuing deleteNote() call concurrently at the same time with different note guids, however, only some of the calls actually work and the note gets deleted in Evernote. Some of the the calls doesn't delete the note in Evernote, even it received the update sequence indicating the call is successful. The note is still there in Evernote and the only change is that its last modified timestamp has been updated.

Is this an Evernote server-side issue or client SDK issue?

Thank,

Tao

note.getTagNames returns null

Something is not working anymore : after a search, every found note is returning null when calling getTagNames();
getTagGuids() is returning something but I cannot use it as I cannot figure out how to translate guid to label

get notes that has been deleted from trash

once we delete note it goes to trash .
when we delete note from trash it is permanently deleted.
So how we get the permanently deleted note details.
please help to with its API or any method to use.

Thank you

Really slow API access

I'm not sure if the issue is with the SDK or the API itself, but accessing the API through the Evernote Java SDK is extremely slow. 4 to 5 sec top, which very slow in the API standard. Is there a way for the API to return faster than this?

NoteStoreClient.findNotes() does not find notes

I am using the Evernote Java SDK with the sandbox account to create a note and search for it.

Note mynote = new Note();
mynote.setTitle("mytitle");
mynote.setContent(content);
Note createdNote = noteStore.createNote(mynote);

NoteFilter filter = new NoteFilter();
String query = "mytitle";
filter.setWords(query);

NoteList notelist = noteStore.findNotes(filter, 0, 10);

The creation of the note works fine but unfortunately findNotes() just returns an empty list. The same code worked some months ago but now it doesn't anymore.

fix README for Maven

The version for Maven in the README states 1.25.0 but it doesn't work with mvn install, whereas 1.25 does work (without the .0 suffix)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.