mirror of
https://github.com/Lissy93/web-check.git
synced 2024-11-23 08:45:07 +01:00
27 lines
613 B
JavaScript
27 lines
613 B
JavaScript
const axios = require('axios');
|
|
|
|
exports.handler = async function(event, context) {
|
|
const { url } = event.queryStringParameters;
|
|
|
|
if (!url) {
|
|
return {
|
|
statusCode: 400,
|
|
body: JSON.stringify({ message: 'url query string parameter is required' }),
|
|
};
|
|
}
|
|
|
|
try {
|
|
const response = await axios.get(url, {withCredentials: true});
|
|
const cookies = response.headers['set-cookie'];
|
|
return {
|
|
statusCode: 200,
|
|
body: JSON.stringify({ cookies }),
|
|
};
|
|
} catch (error) {
|
|
return {
|
|
statusCode: 500,
|
|
body: JSON.stringify({ error: error.message }),
|
|
};
|
|
}
|
|
};
|