-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to get the Google File ID? #15
Comments
I work it out with the name of the folder, it worked for me tho. i could upload folder and subfolders into any folder and go on with out any kind of problem. See that this is your problem, you should try to build the url through the name of the folders. |
Thanks 🙏 Can you please show me how to construct the URL to the Google Drive web interface using just the folders? |
Hey dude, sadly i've been having all kind of issues, regarding to the yaza to use it fully. i highly recommend you to use the direct Google Drive API V3, it's honestly super easy to do. if you need more information you can email me at yreysepulveda@gmail.com or yrey415@unab.edu.co. I advanced waaaaay faster using the direct API, i am able to create folders and files, edit them with no problem at all, it's super easy with the API. I can show you the google controller you need to start working with class GoogleAuthController extends Controller
} and the routes you need in your software to get the initials tokens. Route::get('/login/google', [GoogleAuthController::class, 'redirectToGoogle'])->name('google.login'); NOTE: I did not use any library, i only used HTTP request, which honestly is one of the best ways to handle API request most of the times, well in my experience, it can be otherwise. |
I want to redirect my users to the Google Drive interface, to show the file in their viewer. To construct the URL, I need the file ID. Is that exposed somehow?
The text was updated successfully, but these errors were encountered: