Search code examples
google-drive-api

Request body for Google drive image upload api


I have Base64 string of image now i want to upload this to drive using google drive REST api. But i am not sure about the format of request body. Could you please any one help we on this? Not able to find any example of such.

enter image description here

i want to upload image in Base64 string to drive using google drive rest api, not with any packages or sdk.


Solution

  • For starters change the body to Raw json not raw text.

    Then just try adding something like this

    {
      "name": "myimage.jpg",
      "mimeType": "image/jpb"
    }
    

    That should get you the metadata. Give me a minute while i See if i can find an example of how to add the actual file data.

    You should be able to add that in the form data section form data