Hi all,
Is there a way to obtain the reasons why an offline conversion upload fails, for example TOO_RECENT_CLICK or UNAUTHORIZED_USER
I have SOAP body responses like following :
<soap:Body>
<soap:Fault>
<faultcode>soap:Server</faultcode>
<faultstring>[OfflineConversionError.UNAUTHORIZED_USER @ operations[0].operand]</faultstring>
<detail>
<message>[OfflineConversionError.UNAUTHORIZED_USER @ operations[0].operand]</message>
<ApplicationException.Type>ApiException</ApplicationException.Type>
<fieldPath>operations[0].operand</fieldPath>
<trigger/>
<errorString>OfflineConversionError.UNAUTHORIZED_USER</errorString>
<ApiError.Type>OfflineConversionError</ApiError.Type>
<reason>UNAUTHORIZED_USER</reason>
</errors>
</ApiExceptionFault>
</detail>
</soap:Fault>
</soap:Body>
I´m using the reference example for upload offline conversions :
OfflineConversionFeedReturnValue offlineConversionReturnValue = offlineConversionFeedService.mutate(new OfflineConversionFeedOperation[] {offlineConversionOperation});
But when there is an exception this object is null, so I have no idea how to access to the errors.
Thanks in advance,
Antonio