const axios = require('axios') module.exports = getUserInfo = (async (client_id, access_token, type) => { return await axios.get('https://api.twitch.tv/helix/users', { headers: { 'Authorization': `Bearer ${access_token}`, 'Client-Id': client_id } }).then(response => { //console.log(response.data) if (type === 'login') return response.data.data[0].login if (type === 'id') return response.data.data[0].id }).catch(error => { console.log(error.response.data) }) })