Skip to content

Instantly share code, notes, and snippets.

@jirawatee
Created October 26, 2019 18:23
Show Gist options
  • Save jirawatee/4dde7b2ff60da830b1bd335d94353e48 to your computer and use it in GitHub Desktop.
Save jirawatee/4dde7b2ff60da830b1bd335d94353e48 to your computer and use it in GitHub Desktop.
LIFF v2 - Query String
<script>
const medium = 'https://medium.com/linedevth/';
const queryString = decodeURIComponent(window.location.search).replace("?liff.state=", "");
const params = new URLSearchParams(queryString);
const id = params.get('id');
if (id != null && id != '') {
window.location.assign(medium + id);
} else {
window.location.assign("https://developers.line.biz");
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment