Last active
May 3, 2019 17:58
-
-
Save lecano/00f00abcf72ee92b983f80e9ef101a6b to your computer and use it in GitHub Desktop.
dnisunat-call
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var data = new FormData(); | |
| data.append("dni", "06477277"); | |
| data.append("token", "de17febe-402a-4177..."); | |
| var xhr = new XMLHttpRequest(); | |
| xhr.open("POST", "https://api.migoperu.pe/api/v1/dni"); | |
| xhr.setRequestHeader("Accept", "application/json"); | |
| xhr.send(data); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment