Skip to content

Instantly share code, notes, and snippets.

@deeayeen
Created October 19, 2019 20:23
Show Gist options
  • Save deeayeen/c29cd080ec1981c74998cf6dcc1eff8e to your computer and use it in GitHub Desktop.
Save deeayeen/c29cd080ec1981c74998cf6dcc1eff8e to your computer and use it in GitHub Desktop.
const vimeoVideos = yield fetch('https://api.vimeo.com/me/videos', {
method: 'GET',
headers: {
Authorization: 'bearer ${ACCESS_TOKEN}',
},
})
.then(response => response.json())
.then(data => data);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment