Giter Club home page Giter Club logo

ti-evernote-api's Introduction

Evernote API for Titanium Mobile

Progress

iOS

  • Completed!
  • It's worked on 1.7.5 and 1.8.0.1

Android

  • wokring on 'android' branch

Documents

Sorry, This module's documentation is nothing now. My English skill is horrible. :-(

Please see 'examples/app.js' and 'doc/html/index.html'

Example

app.js

var config = require('config');

var window = Ti.UI.createWindow();
var table = Ti.UI.createTableView();
window.add(table);
window.open();

var evernote = require('jp.masuidrive.ti.evernoteapi');

var userstore = evernote.createUserStoreClient(config.url+"user");
userstore.authenticate(config.demo.email, config.demo.password, config.consumerKey, config.consumerSecret, function(event) {
    if(event.type == 'success') {
        Ti.API.info(event.result.toHash());

        var notestore = evernote.createNoteStoreClient(config.url+"note/"+event.result.user.shardId);
        
        var notes = notestore.listNotebooks(event.result.authenticationToken, function(event2) {
            table.data = event2.result.map(function(note){ return({title: note.name}); });
            /*
            var note = evernote.createNote({title: 'Test'});
            note.tagNames = ['tag1', 'tag2'];
            notestore.createNote(event.result.authenticationToken, note, function(e) {
                Ti.API.info(e);
            });
            */
        });
    }
    else {
        Ti.API.info(event);
        alert(event.error.message);
    }
});

config.js

exports = {
    url: "https://sandbox.evernote.com/edam/",
    
    consumerKey: "You can get from http://www.evernote.com/about/developer/api/",
    consumerSecret: "You can get from http://www.evernote.com/about/developer/api/",
    
    demo: {
        email: "[email protected]",
        password: "your password"
    }
};

License

2011 Yuichiro MASUI <[email protected]> All rights reserved.

License: Apache License 2.0

ti-evernote-api's People

Contributors

atsusy avatar masuidrive avatar

Watchers

 avatar  avatar

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.