-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
urn, mime and other details are missing in the getManifest response #7
Comments
The issue seems with conversion of response to manifest. check below the plain response and it has all the urn and other information The response is not correctly converted into Manifest. |
Hi, |
I have the exact same issue here. I'm supposed to get the converted file's urn from the manifest so I can use it in getDerivativeManifest to download the file (however this function works to download something without a File return value or a target path), but the manifest I get after job success only contains 2 urns :
I guess I should do something like "manifest.getDerivatives().get(0).getUrn(), but it turns out that the class ManifestDerivative doesn't have an urn member at all. |
Hi Keorl, This issues seems to be of no priority to the team. I found another GItHub project with the similar implementation, may be that helps |
I am using the following code to get the manifest from a successful job
ApiResponse manifest = derivativesApi.getManifest(urnOfSuccessfulJob, null, oauth2TwoLegged, twoLeggedCredentials);
Manifest data = manifest.getData();
The response does not contain urn's
eg:
children: [class ManifestChildren {
type: geometry
role: 2d
name: 03.51 - Detail V.01
hasThumbnail: true
mime: null
urn: null
progress: complete
status: success
resolution: []
modelGUID: null
objectIds: []
messages: null
}
Full Response can be found at:
https://drive.google.com/file/d/0ByrHSB-f7jP3TXhHYVQtOEUyM2c/view
Thanks & Regards,
Sarat.
The text was updated successfully, but these errors were encountered: