https://github.com/fdciabdul/gdurl
Google Drive Direct Link Generator
https://github.com/fdciabdul/gdurl
axios google google-drive nodejs
Last synced: about 1 month ago
JSON representation
Google Drive Direct Link Generator
- Host: GitHub
- URL: https://github.com/fdciabdul/gdurl
- Owner: fdciabdul
- Created: 2023-03-04T17:23:44.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-04T17:44:17.000Z (about 2 years ago)
- Last Synced: 2025-04-15T00:53:53.909Z (about 1 month ago)
- Topics: axios, google, google-drive, nodejs
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 7
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GdURL
Google Drive Direct Link Generator
# Install
[](https://npmjs.org/package/gdurl)```
npm install gdurl
```# Usage
```javascript
const googleDrive = require("gdurl");async function test() {
const docId = "drive-id";
const result = await googleDrive.getMediaLink(docId);
console.log(result);
}test();
```# FAQ
Q : How to get drive id ?
A : you can get drive id by looking the url
example :
```
https://drive.google.com/file/d/13xUgzPgKHvXO4JQF7Nyadci7g3Bpjbgx/view
```this is `13xUgzPgKHvXO4JQF7Nyadci7g3Bpjbgx` the drive id
# License
[ISC](https://github.com/fdciabdul/GdURL)
# Code By
[Abdul Muttaqin](mailto:[email protected])# CP