{"id":17573772,"url":"https://github.com/zxdong262/ringcentral-translate-bot","last_synced_at":"2025-10-13T11:32:47.629Z","repository":{"id":69414842,"uuid":"161299983","full_name":"zxdong262/ringcentral-translate-bot","owner":"zxdong262","description":"Translate bot for glip","archived":false,"fork":false,"pushed_at":"2019-11-02T09:41:12.000Z","size":121,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-07T07:04:01.744Z","etag":null,"topics":["bot","ringcentral","translate"],"latest_commit_sha":null,"homepage":null,"language":"Python","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/zxdong262.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":"2018-12-11T08:13:19.000Z","updated_at":"2019-05-27T23:38:18.000Z","dependencies_parsed_at":"2023-07-09T22:45:53.872Z","dependency_job_id":null,"html_url":"https://github.com/zxdong262/ringcentral-translate-bot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zxdong262/ringcentral-translate-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zxdong262%2Fringcentral-translate-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zxdong262%2Fringcentral-translate-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zxdong262%2Fringcentral-translate-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zxdong262%2Fringcentral-translate-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zxdong262","download_url":"https://codeload.github.com/zxdong262/ringcentral-translate-bot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zxdong262%2Fringcentral-translate-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279014793,"owners_count":26085594,"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-13T02:00:06.723Z","response_time":61,"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":["bot","ringcentral","translate"],"created_at":"2024-10-21T21:04:46.734Z","updated_at":"2025-10-13T11:32:47.611Z","avatar_url":"https://github.com/zxdong262.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# ringcentral-translate-bot\n\nTranslate bot for RingCentral Glip\n\n![ ](screenshots/ss.png)\n![ ](screenshots/ss1.png)\n![ ](screenshots/ss2.png)\n\n## Prerequisites$\n\n- Python3.6+ and Pip3\n- Get an AWS account, create `aws_access_key_id` and `aws_secret_access_key` and place them in `~/.aws/credentials`, like this:\n\n```bash\n[default]\naws_access_key_id = \u003cyour aws_access_key_id\u003e\naws_secret_access_key = \u003cyour aws_secret_access_key\u003e\n```\n\n- Create the bot App: Login to [developer.ringcentral.com](https://developer.ringcentral.com) and create an `public` `Server/Bot` app with permissions: `ReadAccounts, Edit Extensions, WebhookSubscriptions, Glip`(or more as you may need)\n\n## Development \u0026 Quick start\n\n```bash\n\n# use virtualenv\npip3 install virtualenv # might need sudo\n\n# init virtual env\nvirtualenv venv --python=python3\n\n# use env\nsource ./venv/bin/activate\n\n# install required modules\npip install -r requirements.txt\n\n# run ngrok proxy\n# since bot need https server,\n# so we need a https proxy for ringcentral to visit our local server\n./bin/proxy\n# will show:\n# Forwarding https://xxxxx.ngrok.io -\u003e localhost:9890\n\n# create env file\n# .env already created from .sample.env\n# just edit .env, set proper setting,\nRINGCENTRAL_BOT_SERVER=https://xxxxx.ngrok.io\n\n## for bots auth required, get them from your ringcentral app page\nRINGCENTRAL_BOT_CLIENT_ID=\nRINGCENTRAL_BOT_CLIENT_SECRET=\n\n# and goto your ringcentral app setting page, set OAuth Redirect URI to https://https://xxxxx.ngrok.io/bot-oauth\n\n# create bot config\ncp bot-logic.py config.py\n\n# run local dev server\n./bin/start\n```\n\n## Test bot\n\n- Goto your ringcentral app's bot section, click 'Add to glip'\n- Login to [https://glip-app.devtest.ringcentral.com](https://glip-app.devtest.ringcentral.com), find the bot by searching its name. Talk to the bot.\n- Edit config.py to change bot bahavior and test in [https://glip-app.devtest.ringcentral.com](https://glip-app.devtest.ringcentral.com)\n\n## Building and Deploying to AWS Lambda\n\n[deploy-to-aws-lambda](https://github.com/zxdong262/ringcentral-chatbot-python/blob/master/docs/deploy-to-aws-lambda.md)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzxdong262%2Fringcentral-translate-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzxdong262%2Fringcentral-translate-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzxdong262%2Fringcentral-translate-bot/lists"}