{"id":31847940,"url":"https://github.com/wireapp/outlook-addin","last_synced_at":"2025-10-12T09:58:42.395Z","repository":{"id":150260786,"uuid":"613896475","full_name":"wireapp/outlook-addin","owner":"wireapp","description":"Wire add-in for Microsoft Outlook ","archived":false,"fork":false,"pushed_at":"2025-01-20T14:13:22.000Z","size":862,"stargazers_count":3,"open_issues_count":3,"forks_count":4,"subscribers_count":4,"default_branch":"staging","last_synced_at":"2025-01-20T15:24:49.467Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wireapp.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":"2023-03-14T13:43:00.000Z","updated_at":"2024-12-10T12:02:38.000Z","dependencies_parsed_at":"2024-04-25T12:27:46.518Z","dependency_job_id":"a2f67ef2-096e-4eb1-b585-d374d4fd8c3b","html_url":"https://github.com/wireapp/outlook-addin","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/wireapp/outlook-addin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Foutlook-addin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Foutlook-addin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Foutlook-addin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Foutlook-addin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wireapp","download_url":"https://codeload.github.com/wireapp/outlook-addin/tar.gz/refs/heads/staging","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Foutlook-addin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279010951,"owners_count":26084841,"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-12T02:00:06.719Z","response_time":53,"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":[],"created_at":"2025-10-12T09:58:38.474Z","updated_at":"2025-10-12T09:58:42.389Z","avatar_url":"https://github.com/wireapp.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wire's Microsoft Outlook Calendar Add-in\n\nWire add-in for Microsoft Outlook\n\n## Wire Staging Env\n```\n- name: BASE_URL\nvalue: https://outlook.integrations.zinfra.io\n\n- name: WIRE_API_BASE_URL\nvalue: https://staging-nginz-https.zinfra.io\n\n- name: WIRE_API_VERSION\nvalue: v5\n\n- name: WIRE_AUTHORIZATION_ENDPOINT\nvalue: https://wire-webapp-qa.zinfra.io/auth\n\n- name: CLIENT_ID\nvalue: e30a9b94-8e0d-4b15-8a1a-236f68729cdd\n```\n\n## App Config\n```\nwindow.config = {\n  addInBaseUrl: \"${BASE_URL}\",\n  apiBaseUrl: \"${WIRE_API_BASE_URL}\",\n  apiVersion: \"${WIRE_API_VERSION}\",\n  authorizeUrl: \"${WIRE_AUTHORIZATION_ENDPOINT}\",\n  clientId: \"${CLIENT_ID}\",\n};\n```\n## API Version\nThe WIRE_API_VERSION environment variable can be optionally set to define the API version for the application. If not explicitly set, the default value of 'v5' will be used.\n\n## Local Storage\n- isLoggedIn\n- refresh_token\n- access_token\n\n## Feature flag\n - `outlookCalIntegration` - Must be enabled in order to be able to create a group and the link.\n\n## Authorize\n- URL: [config.authorizeUrl]\n- Callback: [config.addInBaseUrl]/callback.html\n- Scope: write:conversations write:conversations_code read:self read:feature_configs\n- State: random 16 hex chars\n- Verifier: random 64 hex chars\n\n`State` and `Verifier` saved to Session Storage under: `state` and `code_verifier` respectively\n\n## OAuth Callback\n- When called verifies the `state` parameter and exchanges `code` for the tokens\n- `access_token` and `refresh_token` then stored to Local Storage\n\n## Refresh token\n- Upon 401 Add-in will go to: POST [config.apiBaseUrl]/auth/refresh and body = LocalStorage.refresh_token\n\n## Business Logic\n- \n\n## How to create new Service with the BE (Brig)\n```agsl\ncurl -s -X POST localhost:8080/i/oauth/clients \\\n    -H \"Content-Type: application/json\" \\\n    -d '{\n      \"application_name\":\"Wire Microsoft Outlook Calendar Add-in\",\n      \"redirect_url\":\"https://outlook.wire.com/callback.html\" \n    }'\n```\n\n## How to install the Add-in in MS Outlook\n- Open an email and go to 3 dots and select Get Add-ins\n![Step 1](images/step_1.png)\n- Go to My Add-ins, Custom Add-ins, Add a Custom Add-in\n![Step 2](images/step_2.png)\n- Pick up a URL and add: https://outlook.integrations.wire.com/manifest.xml\n![Step 3](images/step_3.png)\nWire button will appear in the toolbar when new event is being created\n\n## Troubleshooting\n- If you are getting `401` error, please make sure that you have enabled the feature flag `outlookCalIntegration` for your account.\n- If your browser is blocking third-party cookies, please make sure to allow them for the add-in to work properly. Or you can add `https://outlook.office.com` to the list of allowed websites.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwireapp%2Foutlook-addin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwireapp%2Foutlook-addin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwireapp%2Foutlook-addin/lists"}