/* This file is part of mastodon-cpp. * Print the first 20 characters from every bookmark (Glitch-Soc only). */ // Don't compile this if the Easy-interface is turned off #ifndef WITHOUT_EASY #include #include #include #include #ifdef MASTODON_CPP #include "mastodon-cpp.hpp" #include "easy/all.hpp" #else #include #include #endif using std::cout; using Mastodon::API; using Mastodon::Easy; int main(int argc, char *argv[]) { if (argc < 3) { std::cerr << "usage: " << argv[0] << " \n"; return 1; } Easy masto(argv[1], argv[2]); std::string answer; std::uint16_t ret; ret = masto.get(API::v1::bookmarks, answer); cout << "Return code: " << ret << '\n'; std::vector statuses = Easy::json_array_to_vector(answer); for (const string &json : statuses) { cout << Easy::Status(json).content().substr(0, 20) << '\n'; } return 0; } #else #include int main() { printf("mastodon-cpp was compiled without Easy support.\n"); return 255; } #endif // WITHOUT_EASY