Modifying Google Drive File List Request parameters in C++

165 views Asked by At

I find myself writing code in C++ to integrate Google Drive with a desktop app, and I need to modify the q parameter of a File List Request. Is there a way to do this with the Drive API and functions like List(), Fetch(), etc? Or will I have to bite the bullet and make the request directly via GET or POST?

Thanks!

1

There are 1 answers

0
Burcu Dogan On

We don't have a C++ client at the moment, you need implement a REST client by yourself.