{"id":29635052,"url":"https://github.com/mscbuild/telegram-woocommerce-shop","last_synced_at":"2026-04-11T11:03:17.521Z","repository":{"id":304712156,"uuid":"1019681650","full_name":"mscbuild/telegram-woocommerce-shop","owner":"mscbuild","description":"🛍 Telegram store for WooCommerce. This project is a Telegram bot that connects to WooCommerce via REST API, displays products, allows you to collect a cart and place orders directly in Telegram.","archived":false,"fork":false,"pushed_at":"2026-03-22T19:32:37.000Z","size":28,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-23T11:11:49.605Z","etag":null,"topics":["business","java","node","payment","rest-api","shop","telegram","woocommerce","wordpress"],"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/mscbuild.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}},"created_at":"2025-07-14T17:48:50.000Z","updated_at":"2026-03-22T19:32:41.000Z","dependencies_parsed_at":"2025-07-14T23:13:05.625Z","dependency_job_id":"a498eabb-a85c-4928-9ae1-dc7317ff3d62","html_url":"https://github.com/mscbuild/telegram-woocommerce-shop","commit_stats":null,"previous_names":["mscbuild/telegram-woocommerce-shop"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mscbuild/telegram-woocommerce-shop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mscbuild%2Ftelegram-woocommerce-shop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mscbuild%2Ftelegram-woocommerce-shop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mscbuild%2Ftelegram-woocommerce-shop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mscbuild%2Ftelegram-woocommerce-shop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mscbuild","download_url":"https://codeload.github.com/mscbuild/telegram-woocommerce-shop/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mscbuild%2Ftelegram-woocommerce-shop/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31677819,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T08:18:19.405Z","status":"ssl_error","status_checked_at":"2026-04-11T08:17:08.892Z","response_time":54,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["business","java","node","payment","rest-api","shop","telegram","woocommerce","wordpress"],"created_at":"2025-07-21T16:09:31.939Z","updated_at":"2026-04-11T11:03:17.516Z","avatar_url":"https://github.com/mscbuild.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🛍 Telegram store for WooCommerce\n ![](https://komarev.com/ghpvc/?username=mscbuild)\n [![Author](https://img.shields.io/badge/Author-Yuri%20Dev-blue.svg)](http://mscbuild.github.io/)\n ![](https://img.shields.io/github/license/mscbuild/telegram-woocommerce-shop) \n ![](https://img.shields.io/badge/PRs-Welcome-green)\n ![](https://img.shields.io/github/languages/code-size/mscbuild/telegram-woocommerce-shop)\n![](https://img.shields.io/badge/code%20style-node.js-green)\n![](https://img.shields.io/github/stars/mscbuild)\n![](https://img.shields.io/badge/Topic-Github-lighred)\n![](https://img.shields.io/website?url=https%3A%2F%2Fgithub.com%2Fmscbuild)\n\n\nThis project is a Telegram bot that connects to WooCommerce via REST API, displays products, allows you to collect a cart and place orders directly in Telegram.\n\n## 🚀 Possibilities\n\n- Getting a list of products from WooCommerce\n- Adding items to cart\n- Step-by-step ordering (name, phone, email)\n- Sending Orders in WooCommerce\n- Telegram Admin Notice\n\n---\n\n## ⚙️ Installation\n\n### 1. Clone the project\n\n~~~bash\ngit clone https://github.com/yourusername/telegram-woocommerce-shop.git\ncd telegram-woocommerce-shop\n~~~\n\n### 2.Install dependencies\n\n~~~bash\nnpm install\n~~~\n### 3.Mood\n\nCreate a `.env` file based on `.env.example` and add the keys:\n~~~bash\nTELEGRAM_BOT_TOKEN=xxx\nADMIN_CHAT_ID=123456789\nWOOCOMMERCE_URL=https://yourstore.com\nWOOCOMMERCE_CONSUMER_KEY=ck_xxxxxxxxx\nWOOCOMMERCE_CONSUMER_SECRET=cs_xxxxxxxxx\n~~~\n\n### 4. Launch the bot\n~~~bash\nnpm start\n~~~\n\n📁 Structure\n~~~bash\n \n├── bot.js                # Basic logic of the bot\n├── config.js             # Configuration (uses .env)\n├── .env.example          # Configuration template\n├── .gitignore            # Ignored files\n├── package.json\n└── README.md\n~~~\n\n# 🧩 What the bot will be able to do?\n\n- ✅ Get a list of products from WooCommerce\n- ✅ Show products in Telegram with photos and buttons\n- ✅ When clicking \"Buy\" - place an order via WooCommerce API\n- ✅ Send you a notification in Telegram about a new order\n\n# ❓ That the user can:\n\n- 📦 Add multiple items\n\n- 🧺 View cart\n\n- ✅ Place one order with multiple items\n\n## License\n\nThis project is licensed under the MIT License.  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmscbuild%2Ftelegram-woocommerce-shop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmscbuild%2Ftelegram-woocommerce-shop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmscbuild%2Ftelegram-woocommerce-shop/lists"}