Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@manifoldxyz/oauth-widget-js
Advanced tools
> yarn add @manifoldxyz/oauth-widget-js
This flow type is meant for purely frontend applications. Your user will be directed to a login page, and once they sign the login, they will be redirected to your redirectUri
with the query param ?token=
, which is an access token to call the Manifold Data API resources.
import { ManifoldOAuthLink } from '@manifoldxyz/oauth-widget-js'
<ManifoldOAuthLink
clientId="abcd"
grantType="token"
redirectUri="https://developers.manifoldxyz.dev/"
/>
This login flow is meant for when you have a backend as well as a frontend, and you can keep your Client Secret safe on the backend. Here, your user will be directed to a login page and once they sign the login, will be redirected to your redirectUri
with the query param of ?code=
, which is an authorization code you can use (one-time) to get an access token.
You will want to pass this code to your backend, and use the backend to call our OAuth server to get a token based on the code, your clientId, and your clientSecret.
import { ManifoldOAuthLink } from '@manifoldxyz/oauth-widget-js'
<ManifoldOAuthLink
clientId="abcd"
grantType="code"
redirectUri="https://developers.manifoldxyz.dev/"
/>
FAQs
### Install
The npm package @manifoldxyz/oauth-widget-js receives a total of 0 weekly downloads. As such, @manifoldxyz/oauth-widget-js popularity was classified as not popular.
We found that @manifoldxyz/oauth-widget-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.