Proxy Google Docs List Site
Then your client calls: GET http://api.yourdomain.com/drive/files?q=mimeType='application/vnd.google-apps.document' Use case You need a proxy that supports authentication or UDP (rare for HTTP APIs but possible). Example with Node.js (Axios + SocksProxyAgent) const axios = require('axios'); const SocksProxyAgent = require('socks-proxy-agent'); const agent = new SocksProxyAgent('socks5://username:password@proxy-ip:1080');
headers = "Authorization": "Bearer YOUR_ACCESS_TOKEN" params = "q": "mimeType='application/vnd.google-apps.document'", "fields": "files(id, name, createdTime)" Proxy Google Docs List
response = requests.get( "https://www.googleapis.com/drive/v3/files", headers=headers, params=params, proxies=proxies ) Then your client calls: GET http://api