vicinae-ext-oauth
v0.0.1
Published
OAuth library for Vicinae extensions
Downloads
4
Readme
Vicinae Extension OAuth
Polyfill for @raycast/api's OAuth so that Vicinae extensions can get OAuth working.
Usage
- Download source for any raycast extension.
- Set the extension up for vicinae (https://docs.vicinae.com/extensions/debug-raycast)
npm install npm install --save-dev @vicinae/api - Replace
withimport { OAuth } from '@raycast/api';import { OAuth } from 'vicinae-ext-oauth'; - Set your own
clientId(in the same file with the OAuth import) - Try it out!
npx vici develop
Notes
When setting up new OAuth apps on any service, the Redirect URI should be: http://127.0.0.1:21503/callback
Development
To install dependencies:
bun installTo build:
bun run build