@particle-network/auth-core
v2.0.4
Published
## Start
Downloads
11,752
Readme
Particle Auth Core
Start
Init Auth Core with Particle config, you can get the config from Particle Dashboard.
import { particleAuth } from '@particle-network/auth-core';
particleAuth.init({
projectId: string;
clientKey: string;
appId: string;
});
Connect
import { connect } from '@particle-network/auth-core';
const userInfo = await connect({
email: 'xxx',
code: 'xx',
});