#DevHack: using the VSCode's URI Handler in codespaces
This post is over a year old, some of this information may be out of date.
If you are reading this article, you know what a URI handler in Visual Studio Code is, but in case you do not. A URI Handler allows you to create a callback into your extension. Typically this is used in authentication flows to open your browser, fill in your credentials, and get redirected back into Visual Studio Code. Your URI Handler will then process the rest of the authentication process, like requesting an access token.
While working on a custom authentication provider, I found it needed to be fixed for GitHub Codespaces and Gitpod. The URI Handler, configured in my Visual Studio Code extension, never got triggered when invoked from within a Codespace. On the desktop, it works fine, so this got me to understand better how it works.
The investigation
First, I investigated the differences between the desktop and codespaces URI handler flows.
A good starting point was the callbacks and URI handlers for codespaces documentation from Visual Studio Code. The documentation explains that you should use the vscode.env.asExternalUri
method to generate the redirect URL.
You need to use the vscode.env.asExternalUri
method, because it will convert the URL to the right environment.
For the desktop, your URL should look as follows: vscode://<publisher>.<extension name>
. If you are using the insiders version of Visual Studio Code, it will be vscode-insiders://
.
If you use the asExternalUri
method in your extension running on a codespace, its URL will be linked to your remote URL of GitHub Codespaces or Gitpod.
For the example, I use the following code:
const extensionUrl = `${vscode.env.uriScheme}://eliostruyf.vscode-remoteuri-sample`;const extensionUrlParsed = vscode.Uri.parse(extensionUrl);const callbackUri = await vscode.env.asExternalUri(extensionUrlParsed);
// Use the callbackUri to open a browservscode.env.openExternal(callbackUri.toString(true));
This code generates me the following results:
GitHub Codespaces
- Codespace URL:
https://estruyf-opulent-capybara-4grqx5g7953754v.github.dev/
- External URI:
https://estruyf-opulent-capybara-4grqx5g7953754v.github.dev/extension-auth-callback?state=5d6adcfd65b9595ea01f177eccf938c7
Notice the extension-auth-callback
path and state
query string parameter. Both are required for the URI Handler to handle the callback.
Gitpod
On Gitpod, these URLs are different, but the functionality is the same.
- Gitpod URL:
https://project-p63remja22j.ws-eu77.gitpod.io
- External URI:
https://project-p63remja22j.ws-eu77.gitpod.io/vscode-extension-auth-callback?vscode-reqid=1&vscode-scheme=gitpod-code&vscode-authority=eliostruyf.vscode-remoteuir-handler
Outcome
To ensure the URI handler can get triggered, ensure these query string parameters you retrieve from the asExternalUri method are kept unchanged.
The code for the URI handler is pretty simple. It look as follows:
vscode.window.registerUriHandler({ handleUri(uri: vscode.Uri): vscode.ProviderResult<void> { vscode.window.showInformationMessage(`URI handler called: ${uri.toString()}`); }});
Related articles
Make your auth provider work in GitHub and Gitpod codespaces
In this article, Elio explains how you can create an authentication provider that works with a proxy to redirect you to the desktop, GitHub Codespaces, Gitpod.
Publishing your VSCode Extensions from GitHub Actions
Finding your old GitHub Codespaces and deleting them
In this article, Elio explains how you can find your old Codespace instances which take up space and how to remove these.
Report issues or make changes on GitHub
Found a typo or issue in this article? Visit the GitHub repository to make changes or submit a bug report.
Comments
Let's build together
Manage content in VS Code
Present from VS Code