{"id":18607742,"url":"https://github.com/julius278/iobroker.twitter","last_synced_at":"2025-04-10T21:31:48.548Z","repository":{"id":47844497,"uuid":"269156943","full_name":"Julius278/ioBroker.twitter","owner":"Julius278","description":"Twitter Adapter for ioBroker","archived":false,"fork":false,"pushed_at":"2025-03-28T15:26:45.000Z","size":504,"stargazers_count":0,"open_issues_count":13,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-28T16:31:55.411Z","etag":null,"topics":["iobroker","javascript","smarthome","twitter","twitter-adapter"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Julius278.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}},"created_at":"2020-06-03T17:52:25.000Z","updated_at":"2022-08-17T13:18:46.000Z","dependencies_parsed_at":"2023-09-24T01:31:36.892Z","dependency_job_id":"270cc0d0-c89a-4388-b5d3-452eedb6f5a2","html_url":"https://github.com/Julius278/ioBroker.twitter","commit_stats":{"total_commits":93,"total_committers":5,"mean_commits":18.6,"dds":0.4301075268817204,"last_synced_commit":"8dab0e5e4854174819e04f342a289be1e5cf90f9"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Julius278%2FioBroker.twitter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Julius278%2FioBroker.twitter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Julius278%2FioBroker.twitter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Julius278%2FioBroker.twitter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Julius278","download_url":"https://codeload.github.com/Julius278/ioBroker.twitter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248301507,"owners_count":21080903,"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","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":["iobroker","javascript","smarthome","twitter","twitter-adapter"],"created_at":"2024-11-07T02:31:06.417Z","updated_at":"2025-04-10T21:31:43.516Z","avatar_url":"https://github.com/Julius278.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Logo](admin/twitter.png)\n# ioBroker.twitter\n\n[![NPM version](http://img.shields.io/npm/v/iobroker.twitter.svg)](https://www.npmjs.com/package/iobroker.twitter)\n[![Downloads](https://img.shields.io/npm/dm/iobroker.twitter.svg)](https://www.npmjs.com/package/iobroker.twitter)\n![Number of Installations (latest)](http://iobroker.live/badges/twitter-installed.svg)\n![Number of Installations (stable)](http://iobroker.live/badges/twitter-stable.svg)\n[![Dependency Status](https://img.shields.io/david/Julius278/iobroker.twitter.svg)](https://david-dm.org/Julius278/iobroker.twitter)\n[![Known Vulnerabilities](https://snyk.io/test/github/Julius278/ioBroker.twitter/badge.svg)](https://snyk.io/test/github/Julius278/ioBroker.twitter)\n\n[![NPM](https://nodei.co/npm/iobroker.twitter.png?downloads=true)](https://nodei.co/npm/iobroker.twitter/)\n\n## twitter adapter for ioBroker\n\nDescribe your project here\n\n## Developer manual\nThis section is intended for the developer. It can be deleted later\n\n### Getting started\n1. First you have to create an [Twitter App](https://developer.twitter.com/en/apps/create).\n2. After many steps you get the following keys and tokens:\n![Keys and Tokens](img/Keys_and_Tokens.png)\n3. Insert them in the adapter page\n4. There is an \"Test\" button, which posts an \"Hello world!\" message to your timeline to proof, that it works.\n\n### Usage\nTo post or get information from ScriptEngine just write: \n\n```\n// post a tweet to your timeline via twitter adapter\nsendTo(\"twitter\", \"send\", \"message body\");\nsendTo(\"twitter\", \"post\", \"message body\");\n\n// it's also possible to manage different accounts and post\nsendTo(\"twitter.1\", \"send\", \"message body\");\nsendTo(\"twitter.1\", \"post\", \"message body\");\n\n// If you want to test the dummyPost (hello world) tweet\nsendTo(\"twitter\", \"dummyPost\");\n```\n\n## Changelog\n\n### 0.0.1\n* (Julius278) initial release\n\n## License\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.# ioBroker.twitter\n\nCopyright (c) 2022 Julius278 \u003ciobroker@juliuslauterbach.de\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulius278%2Fiobroker.twitter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjulius278%2Fiobroker.twitter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjulius278%2Fiobroker.twitter/lists"}