Closed hasangenc0 closed 6 years ago
Hello,
Could you be more specific on what you're trying to do, such as adding your code snippet here? The error doesn't seem to related to the AdWords API though.
Best, Knack
Hello,
I talked with AdWords API Team member Sai Teja on google groups and he said that "Looks like the concern is related to PHP client libraries".
$query = (new ReportQueryBuilder())
->select([
'CampaignName',
])
->from(ReportDefinitionReportType::CRITERIA_PERFORMANCE_REPORT)
->where('Status')->in(['ENABLED', 'PAUSED'])
->during($dates[0],$dates[1])
->build();
try {
ini_set('default_socket_timeout', $this->soapCallTimeout);
$response = parent::__soapCall( // This function call throws an error
$function_name,
$arguments,
$options,
$input_headers,
$output_headers
);
$this->processResponse($function_name);
}
Hi,
I'm not familiar with appdynamics, so can't comment on that. Did you modify any SOAP headers / body before sending to API servers? And is it possible to get the SOAP logs?
Best, Knack
The error doesn't related to Google Api like you said before. Appdynamics adds a special singularity header on all soap calls to make correlation between appdynamics monitored application. We created a custom backend rule for disable the correlation for Google Api Calls from the UI controller .
I get this error when I call the google adwords api.(AdsSoapClient.php line:149)
My servers runs to AppDynamics and error is relative with it.