123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- const liffId = "1657114132-XEmRVaPz";
- liff.init(
- { liffId: liffId },
- () => {
- initLIFF();
- },
- err => {
- window.alert(err);
- }
- );
- function initLIFF() {
- if (liff.isLoggedIn()) {
- liff
- .getProfile()
- .then(profile => {
- document.getElementById("profileImage").src = profile.pictureUrl;
-
-
-
-
-
-
-
- })
- .catch(e => {
-
-
-
-
-
- });
- } else {
-
-
-
-
- }
-
-
-
-
- var context = liff.getContext();
- if (context !== null) {
-
-
- if (context.utouId) {
- } else {
-
-
- }
- if (context.roomId) {
- } else {
-
-
- }
- if (context.groupId) {
-
- } else {
-
-
- }
- } else {
-
-
-
-
-
-
- }
- }
|