Files
bot_Laytho/utils/getUserID.js
2023-05-13 23:10:13 +02:00

13 lines
432 B
JavaScript

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