Skip to content

Instantly share code, notes, and snippets.

@goforbg
Created June 21, 2022 04:04
Show Gist options
  • Save goforbg/e72fa18754a2f1456a9f43d87f3f67a9 to your computer and use it in GitHub Desktop.
Save goforbg/e72fa18754a2f1456a9f43d87f3f67a9 to your computer and use it in GitHub Desktop.
Get Query Params in Next JS without Next JS Router
//https://regex101.com/r/gmICzZ/1
const params = new URLSearchParams(window.location.href.match(/\?.*/)[0]);
const callBackUrl = params?.get("callbackUrl")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment