I need the ful url path, I tried using 'https://api.dropboxapi.com/1/metadata/auto/google' url but got response object having "path:/google". I need full url.
Also, using api I want create folder in Opportunities not in the app. How to do this?
First, note that the API URL you shared is for Dropbox API v1, which is deprecated:https://blogs.dropbox.com/developers/2016/06/api-v1-deprecated/You should switch to API v2 instead:https://www.dropbox.com/developers
You can create a shared link URL for a file or folder using /2/sharing/create_shared_link_with_settings:https://www.dropbox.com/developers/documentation/http/documentation#sharing-create_shared_link_with_settings
To create a folder, you can use the /2/files/create_folder endpoint:https://www.dropbox.com/developers/documentation/http/documentation#files-create_folder