Hi, I was googling for a way to upload a file to any cloud storage using c++ and came across dropbox api. I found the code, so I did a copy and paste to try and see if it works. I entered the Access token and ran the code, the upload failed showing this error:
"Error in call to API function "files/upload": The given OAuth 2 access token is malformed."
I suspect the error could be related to this line of code:
curl_easy_setopt(curl, CURLOPT_URL, "https://content.dropboxapi.com/2/files/upload");
But I am new in this so I have no idea how to solve it.