mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-03 14:44:27 +01:00
30 lines
946 B
JavaScript
30 lines
946 B
JavaScript
|
class BugNotifier {
|
||
|
notify (message) {
|
||
|
|
||
|
postData('http://example.com/answer', {answer: 42})
|
||
|
.then(data => console.log(data)) // JSON from `response.json()` call
|
||
|
.catch(error => console.error(error))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function postData(url, data) {
|
||
|
// Default options are marked with *
|
||
|
return fetch(url, {
|
||
|
body: JSON.stringify(data), // must match 'Content-Type' header
|
||
|
cache: 'no-cache', // *default, no-cache, reload, force-cache, only-if-cached
|
||
|
credentials: 'same-origin', // include, same-origin, *omit
|
||
|
headers: {
|
||
|
'user-agent': 'Mozilla/4.0 MDN Example',
|
||
|
'content-type': 'application/json'
|
||
|
},
|
||
|
method: 'POST', // *GET, POST, PUT, DELETE, etc.
|
||
|
mode: 'cors', // no-cors, cors, *same-origin
|
||
|
redirect: 'follow', // manual, *follow, error
|
||
|
referrer: 'no-referrer', // *client, no-referrer
|
||
|
})
|
||
|
.then(response => response.json()) // parses response to JSON
|
||
|
}
|
||
|
|
||
|
module.exports = BugNotifier
|
||
|
|