{"id":14982582,"url":"https://github.com/romanpodymov/backendlessqt","last_synced_at":"2026-02-23T23:04:12.433Z","repository":{"id":250833136,"uuid":"835253118","full_name":"RomanPodymov/BackendlessQt","owner":"RomanPodymov","description":"Qt wrapper for Backendless","archived":false,"fork":false,"pushed_at":"2025-05-20T14:14:35.000Z","size":79,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-07T13:37:35.946Z","etag":null,"topics":["backendless","hacktoberfest","hacktoberfest2024","qt","qt6"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RomanPodymov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-07-29T13:13:13.000Z","updated_at":"2025-05-20T14:07:58.000Z","dependencies_parsed_at":"2024-08-13T07:29:39.123Z","dependency_job_id":"108e1bc2-e6ba-4285-a997-0a33a0135437","html_url":"https://github.com/RomanPodymov/BackendlessQt","commit_stats":{"total_commits":40,"total_committers":1,"mean_commits":40.0,"dds":0.0,"last_synced_commit":"1242107fcb08a4b73732c53e4a1a19c0f1fc1ae6"},"previous_names":["romanpodymov/backendlessqt"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/RomanPodymov/BackendlessQt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomanPodymov%2FBackendlessQt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomanPodymov%2FBackendlessQt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomanPodymov%2FBackendlessQt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomanPodymov%2FBackendlessQt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RomanPodymov","download_url":"https://codeload.github.com/RomanPodymov/BackendlessQt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomanPodymov%2FBackendlessQt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279020348,"owners_count":26086865,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backendless","hacktoberfest","hacktoberfest2024","qt","qt6"],"created_at":"2024-09-24T14:05:41.530Z","updated_at":"2025-10-14T18:16:22.262Z","avatar_url":"https://github.com/RomanPodymov.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BackendlessQt\n\nQt wrapper for [Backendless](https://backendless.com).\n\n## How to use it?\n\nCreate a new API instance\n```\nBackendlessAPI api(API(\"YOUR_APP_ID\", \"YOUR_REST_API_KEY\"));\n```\n\nRegister a new user\n```\nQObject::connect(\u0026api.userAPI, \u0026BackendlessUserAPI::registerUserResult, this, [](){\n    // User is registered\n});\napi.userAPI.registerUser(BackendlessRegisterUser(\"myemail@email.com\", \"Roman\", \"Password\"));\n```\n\nSign in\n```\nQObject::connect(\u0026api.userAPI, \u0026BackendlessUserAPI::signInUserSuccess, this, [](auto user){\n    // User is signed in\n});\nQObject::connect(\u0026api.userAPI, \u0026BackendlessUserAPI::signInUserErrorBackendless, this, [](auto error){\n    // Wrong credentials\n});\napi.userAPI.signInUser(\"myemail@email.com\", \"Password\");\n```\n\nValidate user token\n```\nQObject::connect(\u0026api.userAPI, \u0026BackendlessUserAPI::validateUserTokenSuccess, this, [](auto isValid){\n    // Is user token valid?\n});\napi.userAPI.validateUserToken();\n```\n\nAdd a new item to a table\n```\nQObject::connect(\u0026api, \u0026BackendlessAPI::itemAdded, this, [\u0026](){\n    // Item is added\n});\napi.addItemToTable(\n    \"TableName\", \n    {\n        {\"propery\", \"value\"}, \n        {\"anotherProperty\", \"value\"}\n    }\n);\n```\n\nRead table items\n```\nQObject::connect(\u0026api, \u0026BackendlessAPI::tableItemsLoaded, this, [\u0026](auto response){\n    qDebug() \u003c\u003c \"Loaded \" \u003c\u003c response;\n});\napi.loadTableItems(\"TableName\");\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromanpodymov%2Fbackendlessqt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fromanpodymov%2Fbackendlessqt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromanpodymov%2Fbackendlessqt/lists"}