Hello we are building an application on the salsforce platform with this sdk
https://github.com/groupdocs/groupdocs-apex-samples/blob/master/README.md
We are running in to a problem with large file as there is a limit on http request of 6mb when we
are Posting the Document to groups via this method
POST /storage/{userId}/folders/{*path}?description={description}&callbackUrl={callbackUrl}&overrideMode={overrideMode} Upload
We would like to try using one of these two methods
POST /storage/{userId}/urls?url={url} Upload Web
POST /storage/{userId}/google/files/?url={url}&description={description}&accessToken={accessToken} Upload Google
my question mainly is how does the upload web method work how long does the url you pass to the Upload Web method need to be valid for (I.E. just the time it takes the method to complete or as long a that doc is on groupdoc storage). Also Does it need to have an extention on it to figure out the content type or can I pass a link like this https://sitetraker--groupdocs--c.cs24.content.force.com/servlet/servlet.FileDownload?file=015190000005vpW.
or does in need to be like http://www.office.xerox.com/latest/SFTBR-04.PDF for example. I have try the first link https://sitetraker--groupdocs--c.cs24.content.force.com/servlet/servlet.FileDownload?file=015190000005vpW but it default to a word doctype.
We are also using google as are primary document store on groupdocs so would this method be the best us If so I have the same question about how long the url has to be valid on the server.