예제 #1
0
 public JObject find_note(int id)
 {
     notes_space.notesClass _note = new notes_space.notesClass();
     return(JObject.Parse(_note.find_note(get_app_token(), get_auth_token(), config.base_url + string.Format(config.find_note, id)).Result));
 }
예제 #2
0
 public JObject notes(string starttime, string stoptime, Dictionary <string, string> options, int offset = 0)
 {
     notes_space.notesClass _note = new notes_space.notesClass();
     return(JObject.Parse(_note.get_notes(get_app_token(), get_auth_token(), starttime, stoptime, options, offset, config.base_url + config.notes).Result));
 }