Based on the link at Google API. I would like to use Multipart upload due to the large file size. But that have alot thing i don't understand. Please Advanced.
Based on Google API docs, To use simple upload
POST https://www.googleapis.com/upload/drive/v3/files?uploadType=media
What I'm try is as below but it is not work
https://www.googleapis.com/upload/drive/v3/C:\Users\RNKP74\Desktop\Full_XML.zip?uploadType=media
From Google REST link, it show the example as below, how to run this?
POST /upload/drive/v3/files?uploadType=multipart HTTP/1.1
Host: www.googleapis.com
Authorization: Bearer your_auth_token
Content-Type: multipart/related; boundary=foo_bar_baz
Content-Length: number_of_bytes_in_entire_request_body
--foo_bar_baz
Content-Type: application/json; charset=UTF-8
{
"name": "My File"
}
--foo_bar_baz
Content-Type: image/jpeg
JPEG data
--foo_bar_baz--