Hello!

I have code like this:

$selector = new Selector();
$selector->fields = array('FeedId', 'FeedItemId', 'AttributeValues');
$selector->predicates = array();
$selector->predicates[0] = new Predicate('FeedId', 'EQUALS', 
array($feedId));
$selector->predicates[1] = new Predicate('FeedItemId', 'IN', 
array_keys($feedItemPrices));
$feedItems = $feedItemService->get($selector)->entries;
var_dump($feedItems);

where feedItemPrices is array like:

$feedItemPrices= array(
'160309' => array(
'111 UAH'
),
'160310' => array(
'222 UAH'
),
);

I set my feedId and pass feedItemPrices array with my prices. Selector 
works fine, but $feedItems = $feedItemService->get($selector)->entries 
returns NULL.
Could you help me in this problem resolving?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5689a04c-5a27-46d4-8a6d-4aac4c4deff3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to