I am trying to open the folder and see the files inside
const children = await axios.get(
`https://www.googleapis.com/drive/v3/files/${folder.id}`,
{
params: {
fields: "files(id, name)",
spaces: "drive",
},
headers: {
authorization: `Bearer ${accessToken}`,
},
}
);
can we open sub folder using folder id? i tried it but it show errors