Skip to content

Instantly share code, notes, and snippets.

@sirateek
Created April 25, 2020 17:06
Show Gist options
  • Save sirateek/6c8a625d36abc41e1276f970dc0cbc00 to your computer and use it in GitHub Desktop.
Save sirateek/6c8a625d36abc41e1276f970dc0cbc00 to your computer and use it in GitHub Desktop.
liff.ready
.then(() => {
if (liff.isLoggedIn()) {
return liff.getProfile();
} else {
liff.login({
redirectUri: "https://tutorial.sirateek.me/medium/GoogleForm_LIFF/",
});
}
})
.then((profile) => {
window.location.replace(
`https://docs.google.com/forms/d/e/1FAIpQLScTi2cQxv41a5TsSdXKjdqRrwqXcONVIyuRdSK9vWL8muiYEA/viewform?usp=pp_url&entry.1380382849=${profile.userId}&entry.1935461714=${profile.displayName}&entry.562371842=${profile.pictureUrl}&entry.1520526497=${profile.statusMessage}`
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment