Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@line/liff-common-profile-plugin

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@line/liff-common-profile-plugin

A LIFF Plugin to get and auto-fill forms _common profile data_ from Account Center.

  • 0.1.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
6
increased by50%
Maintainers
0
Weekly downloads
 
Created
Source

@line/liff-common-profile-plugin

A LIFF Plugin to get and auto-fill forms common profile data from Account Center.

How to use

CDN

CDN versions of packages is hosted in TBD and can be imported using the script tag as shown below.

index.html

<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <link rel="icon" href="/src/favicon.ico" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <script src="TBD"></script>
    <title>LIFF App</title>
  </head>
  <body>
    <div id="root"></div>
    <script type="module" src="/index.js"></script>
  </body>
</html>

The package is then defined in the global object with the name liffCommonProfile. So you can use the package as a LIFF Plugin as follows in the js/ts file.

index.js

liff.use(new liffCommonProfile.LiffCommonProfilePlugin());
await liff.init({ liffId: "xxx" });

const profile = await liff.$commonProfile.get();
liff.$commonProfile.fill(profile);

npm

npm install @line/liff-common-profile-plugin
import { LiffCommonProfilePlugin } from "@line/liff-common-profile-plugin";

liff.use(new LiffCommonProfilePlugin());
await liff.init({ liffId: "xxx" });

const profile = await liff.$commonProfile.get();
liff.$commonProfile.fill(profile);

FAQs

Package last updated on 17 Oct 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc