{"id":22867969,"url":"https://github.com/sphericalkat/chatwork-web-client","last_synced_at":"2026-02-27T10:01:54.696Z","repository":{"id":263407166,"uuid":"890270083","full_name":"SphericalKat/chatwork-web-client","owner":"SphericalKat","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-14T16:00:26.000Z","size":454,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-25T23:40:10.886Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SphericalKat.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-11-18T09:36:11.000Z","updated_at":"2024-12-14T16:00:30.000Z","dependencies_parsed_at":"2024-11-18T12:03:56.323Z","dependency_job_id":"bb2767f3-5a04-46bf-b6e1-0d2eb2a76f19","html_url":"https://github.com/SphericalKat/chatwork-web-client","commit_stats":null,"previous_names":["sphericalkat/chatwork-web-client"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SphericalKat/chatwork-web-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SphericalKat%2Fchatwork-web-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SphericalKat%2Fchatwork-web-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SphericalKat%2Fchatwork-web-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SphericalKat%2Fchatwork-web-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SphericalKat","download_url":"https://codeload.github.com/SphericalKat/chatwork-web-client/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SphericalKat%2Fchatwork-web-client/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29890654,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T09:48:51.284Z","status":"ssl_error","status_checked_at":"2026-02-27T09:48:43.992Z","response_time":57,"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":[],"created_at":"2024-12-13T12:29:43.040Z","updated_at":"2026-02-27T10:01:54.660Z","avatar_url":"https://github.com/SphericalKat.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Chatwork Web Client\n### Getting started\n#### Running the project\n* Install dependencies with `pnpm install`\n* Run migrations with `pnpm run db:migrate`\n* Put the following in `.env`\n```bash\nDATABASE_URL=local.db\nNEXT_CHATWORK_OAUTH_API_URL='https://oauth.chatwork.com'\nNEXT_CHATWORK_API_URL='https://api.chatwork.com/v2'\nNEXT_CHATWORK_OAUTH_URL=\"https://www.chatwork.com/packages/oauth2/login.php\"\n\n# Values for these 3 are in the next step of this README\nNEXT_APP_BASE_URL=''\nNEXT_CHATWORK_CLIENT_ID=''\nNEXT_CHATWORK_CLIENT_SECRET=''\n```\n* Run the project with `pnpm run dev`\n\n#### Proxying\nChatwork requires you to be developing on an `https://` url, so localhost will not work.  \nThe easiest way to do this is to install [Tailscale](https://tailscale.com), and run `tailscale funnel 3000`.  \nThis will give you a url that it proxied `localhost:3000` to, which will look something like `https://abc.def.ts.net`.  \nNow, you can set `NEXT_APP_BASE_URL` in your `.env`:\n```bash\nNEXT_APP_BASE_URL=\"https://abc.def.ts.net\"\n```\n\n#### Creating the Chatwork OAuth app\n* Go to Chatwork \u003e Integrations  \n  \u003cimg width=\"241\" alt=\"image\" src=\"https://github.com/user-attachments/assets/d728f340-0993-4404-9c02-6c987b07d1cf\" /\u003e\n* Go to API \u003e OAuth  \n  \u003cimg width=\"266\" alt=\"image\" src=\"https://github.com/user-attachments/assets/d1ba947c-0aa7-49a4-86ac-dc2a034ce52d\" /\u003e\n* Click 'Create New'  \n  \u003cimg width=\"147\" alt=\"image\" src=\"https://github.com/user-attachments/assets/60928e57-88db-47ae-875e-291a4c66bf40\" /\u003e\n* Choose any _Client Name_ and _Client Type_, and check all checkboxes in _Scope_. You don't need to choose an _Icon_.\n* For _Redirect URI_, append `/login/chatwork/callback` to the value you set to `NEXT_APP_BASE_URL`, which will look something like `https://abc.def.ts.net/login/chatwork/callback`. Just this one will do for now.  \n* Press _Create_ at the bottom of the screen, and you'll get redirected to a screen that will have your Client ID and Client Secret. Set them in your `.env`.  \n* Now visit `https://abc.def.ts.net` in your browser, and you should be able to grant access and proceed to the web app with all your chats visible!\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsphericalkat%2Fchatwork-web-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsphericalkat%2Fchatwork-web-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsphericalkat%2Fchatwork-web-client/lists"}