Skip to content

Instantly share code, notes, and snippets.

@jmandel
Created August 11, 2017 19:56
Show Gist options
  • Save jmandel/4704d1efed8578a67a6f9b600ffd0c63 to your computer and use it in GitHub Desktop.
Save jmandel/4704d1efed8578a67a6f9b600ffd0c63 to your computer and use it in GitHub Desktop.
var redirectUri = "https://example.com/after-auth?code=123&state=456";
post(redirectUri);
// Thanks to https://stackoverflow.com/a/133997/318206
function post(path, params, method) {
method = method || "post";
var form = document.createElement("form");
form.setAttribute("method", method);
form.setAttribute("action", path);
for(var key in params) {
if(params.hasOwnProperty(key)) {
var hiddenField = document.createElement("input");
hiddenField.setAttribute("type", "hidden");
hiddenField.setAttribute("name", key);
hiddenField.setAttribute("value", params[key]);
form.appendChild(hiddenField);
}
}
document.body.appendChild(form);
form.submit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment