Created
August 14, 2019 22:09
-
-
Save octavioamu/ad1518c6cd6f4ae6dd17cec650de915b to your computer and use it in GitHub Desktop.
favorites
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 getFav = fetchData('api/v0.1/favorites/bounty', 'GET') | |
$.when(getFav).then((response, status, statusCode) => { | |
console.log(response, status, statusCode) | |
}) | |
var postFav = fetchData('api/v0.1/favorites/user/2', 'POST') | |
$.when(postFav).then((response, status, statusCode) => { | |
console.log(response, status, statusCode) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment