Hi. Sorry for bad english :) 

I found a bug in Adwords API (or in SOAP encoding, or anywhere else). 
I have my own PHP library. Trying to retreive list of mobile applications: 

$selector = new Selector();
$criteria = $client->campaignCriterionService()->get(
    $selector
        ->setFields( [
                CampaignCriterionService_Get_Fields::DisplayName,
            ]
        )
        ->setPredicates( [
            ( new \AdWordsApi\API\SharedObjects\Predicate() )
                ->setField( CampaignCriterionService_Get_Fields::
CriteriaType )
                ->setOperator( 'IN' )
                ->setValues( [
                    'MOBILE_APPLICATION',
                ] ),
            ( new \AdWordsApi\API\SharedObjects\Predicate() )
                ->setField( CampaignCriterionService_Get_Fields::Id )
                ->setOperator( 'IN' )
                ->setValues( [
                    '172002209042',
                ] )
        ] )
        ->setOrdering([
            (new \AdWordsApi\API\SharedObjects\OrderBy())
                ->setField('Id')
                ->setSortOrder('ASCENDING')
        ])
);



But i'm getting this error: 

looks like we got no XML document

For me, it's only with cient id 732-179-9520 AND campaign criterion id 
- 172002209042 . I found non-UTF8 symbol in response XML (you can found in 
attachements)

<https://lh3.googleusercontent.com/-v_eeazjjus0/WeDpjhjzDKI/AAAAAAAAZoA/QteTH60KNzYq0rQ_fXO4j7UtHvljsWXpACLcBGAs/s1600/Clip2net_171013192728.png>

Can you accept this bug?


2nd question:

Why in CampaignCriterionServive fieldname "DisplayName" = "ChannelName"? I 
can specify ChannelName instead of DisplayName and get display name of 
Mobile application

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/72fd931c-33f2-4710-bf68-a03aad36e8bb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Attachment: test.xml
Description: XML document

Reply via email to