@asgardeo/javascript 0.2.4 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -44
- package/dist/cjs/index.js +2 -0
- package/dist/cjs/index.js.map +2 -2
- package/dist/index.js +2 -0
- package/dist/index.js.map +2 -2
- package/dist/models/config.d.ts +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,50 +8,11 @@
|
|
|
8
8
|
<a href="./LICENSE"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License"></a>
|
|
9
9
|
</div>
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
npm install @asgardeo/javascript
|
|
16
|
-
|
|
17
|
-
# or using pnpm
|
|
18
|
-
pnpm add @asgardeo/javascript
|
|
19
|
-
|
|
20
|
-
# or using yarn
|
|
21
|
-
yarn add @asgardeo/javascript
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
## Quick Start
|
|
25
|
-
|
|
26
|
-
```javascript
|
|
27
|
-
import { AsgardeoAuth } from "@asgardeo/javascript";
|
|
28
|
-
|
|
29
|
-
// Initialize the auth instance
|
|
30
|
-
const auth = new AsgardeoAuth({
|
|
31
|
-
afterSignInUrl: "https://localhost:3000",
|
|
32
|
-
clientId: "<your_client_id>",
|
|
33
|
-
baseUrl: "https://api.asgardeo.io/t/<org_name>"
|
|
34
|
-
});
|
|
35
|
-
|
|
36
|
-
// Handle authentication
|
|
37
|
-
auth.signIn()
|
|
38
|
-
.then(() => {
|
|
39
|
-
// Handle successful sign in
|
|
40
|
-
})
|
|
41
|
-
.catch((error) => {
|
|
42
|
-
// Handle sign in error
|
|
43
|
-
});
|
|
44
|
-
|
|
45
|
-
// Get authenticated user
|
|
46
|
-
auth.getUser()
|
|
47
|
-
.then((userInfo) => {
|
|
48
|
-
console.log(userInfo);
|
|
49
|
-
});
|
|
50
|
-
|
|
51
|
-
// Sign out
|
|
52
|
-
auth.signOut();
|
|
53
|
-
```
|
|
11
|
+
> [!IMPORTANT]
|
|
12
|
+
> ⚠️ Do not directly use this in your applications.
|
|
13
|
+
> `@asgardeo/javascript` is a framework agnostic SDK that provides core authentication functionalities.
|
|
14
|
+
> For framework-specific integrations, consider using the dedicated SDKs such as `@asgardeo/react`, `@asgardeo/next`, etc.
|
|
54
15
|
|
|
55
16
|
## License
|
|
56
17
|
|
|
57
|
-
Apache
|
|
18
|
+
Licenses this source under the Apache License, Version 2.0 [LICENSE](./LICENSE), You may not use this file except in compliance with the License.
|