Skip to content

Open-App-Library/Qt-Vibrato-Cloud-API

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.

Vibrato API Client Library in Qt

This library provides a Qt/C++ interface to the Vibrato Notes cloud API.

Example usage:

VibratoCloudAPI api;

/*
 * Note: While this function uses your username and password,
 *       it does not actually store them on the computer.
 *       Your username and password are used in HTTP Basic
 *       Authentication to retrieve and API token. This token
 *       is what is used to make requests. This library does
 *       not store your API key on your computer for you.
 *       That is up to you.
 */
api.login("test-user", "vibratonotes");

QJsonObject obj;
obj.insert("title", "Hello from C++!");
qDebug() << api.createNote(obj);

QJsonObject my_notes = api.fetchNotes();

About

This is a C++/Qt library to connect to the Vibrato Back-End API server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published