Last active
March 27, 2019 18:35
-
-
Save jonchenn/b98444d9f7421ca607e100b6dc3af2e2 to your computer and use it in GitHub Desktop.
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
| fetch(url, { | |
| method: 'POST', | |
| headers: { | |
| 'AMP-Same-Origin': 'true', | |
| 'Accept': 'application/json', | |
| 'Content-Type': 'multipart/form-data; boundary=----WebKitFormBoundaryzCA5AbNQoBPgNVsS', | |
| 'Origin': 'http://qa.bosley.com', | |
| 'Referer': 'http://qa.bosley.com/lpamp/gbh1/?amp', | |
| 'User-Agent': 'Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Mobile Safari/537.36}', | |
| }, | |
| method: "POST", // *GET, POST, PUT, DELETE, etc. | |
| mode: "cors", // no-cors, cors, *same-origin | |
| cache: "no-cache", // *default, no-cache, reload, force-cache, only-if-cached | |
| credentials: "same-origin", // include, *same-origin, omit | |
| redirect: "follow", // manual, *follow, error | |
| referrer: "no-referrer", // no-referrer, *client | |
| body: | |
| ` | |
| ------WebKitFormBoundaryzCA5AbNQoBPgNVsS | |
| Content-Disposition: form-data; name="name" | |
| asdf | |
| ------WebKitFormBoundaryzCA5AbNQoBPgNVsS | |
| Content-Disposition: form-data; name="email" | |
| [email protected] | |
| ------WebKitFormBoundaryzCA5AbNQoBPgNVsS-- | |
| `, | |
| }).then(x => console.log(x)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment