Re: Google Adword API - Not getting data for some of the Keywords.

2020-11-23 Thread Neetu Varshney
Hello Peter,
Can you share your piece of code for the keywords "trump, biden" that is 
working nicely on your side?
Also, I do not have permission for the option for "Reply privately to 
author".

*Here is my request file:-*

get($session, 
TargetingIdeaService::class);

// Create selector.
$selector = new TargetingIdeaSelector();
$selector->setRequestType(RequestType::STATS);
$selector->setIdeaType(IdeaType::KEYWORD);
$selector->setRequestedAttributeTypes(
[
AttributeType::KEYWORD_TEXT,
AttributeType::SEARCH_VOLUME,
AttributeType::AVERAGE_CPC,
AttributeType::COMPETITION,
AttributeType::CATEGORY_PRODUCTS_AND_SERVICES
]
);

$paging = new Paging();
$paging->setStartIndex(0);
$paging->setNumberResults(10);
$selector->setPaging($paging);

$searchParameters = [];
// Create related to query search parameter.
$relatedToQuerySearchParameter = new RelatedToQuerySearchParameter();
*$relatedToQuerySearchParameter->setQueries(*
* [*
*'Trump', 'biden'*
* ]*
* );*
$searchParameters[] = $relatedToQuerySearchParameter;

// Create language search parameter (optional).
// The ID can be found in the documentation:
// https://developers.google.com/adwords/api/docs/appendix/languagecodes
$languageParameter = new LanguageSearchParameter();
$english = new Language();
$english->setId(1000);
$languageParameter->setLanguages([$english]);
$searchParameters[] = $languageParameter;

// Create network search parameter (optional).
$networkSetting = new NetworkSetting();
$networkSetting->setTargetGoogleSearch(true);
$networkSetting->setTargetSearchNetwork(false);
$networkSetting->setTargetContentNetwork(false);
$networkSetting->setTargetPartnerSearchNetwork(false);

$networkSearchParameter = new NetworkSearchParameter();
$networkSearchParameter->setNetworkSetting($networkSetting);
$searchParameters[] = $networkSearchParameter;

// Optional: Use an existing ad group to generate ideas.
if (!empty($adGroupId)) {
$seedAdGroupIdSearchParameter = new SeedAdGroupIdSearchParameter();
$seedAdGroupIdSearchParameter->setAdGroupId($adGroupId);
$searchParameters[] = $seedAdGroupIdSearchParameter;
}
$selector->setSearchParameters($searchParameters);
$selector->setPaging(new Paging(0, self::PAGE_LIMIT));

// Get keyword ideas.
$page = $targetingIdeaService->get($selector);

// Print out some information for each targeting idea.
$entries = $page->getEntries();
if ($entries !== null) {
foreach ($entries as $targetingIdea) {
$data = MapEntries::toAssociativeArray($targetingIdea->getData());
$keyword = $data[AttributeType::KEYWORD_TEXT]->getValue();
$searchVolume = ($data[AttributeType::SEARCH_VOLUME]->getValue() !== null)
? $data[AttributeType::SEARCH_VOLUME]->getValue() : 0;
$averageCpc = $data[AttributeType::AVERAGE_CPC]->getValue();
$competition = $data[AttributeType::COMPETITION]->getValue();
$categoryIds = 
($data[AttributeType::CATEGORY_PRODUCTS_AND_SERVICES]->getValue() === null)
? $categoryIds = ''
: implode(
', ',
$data[AttributeType::CATEGORY_PRODUCTS_AND_SERVICES]->getValue()
);
$aFinalArray = [];
$aSubArray = [];
$arr[] = array('keyword' => $keyword, 'cpc' => $averageCpc, 'competition' 
=> $competition, 'search_volumenew' => $searchVolume);
}
$aFinalArray = $arr;
echo ""; print_r($aFinalArray); die;
}

if (empty($entries)) {
print "No related keywords were found.\n";
}
}

public static function main()
{
*$adsConfigPath = __DIR__ . '/../adsapi_php.ini';   // My config file*
$oAuth2Credential = (new 
OAuth2TokenBuilder())->fromFile($adsConfigPath)->build();
$session = (new 
AdWordsSessionBuilder())->fromFile($adsConfigPath)->withOAuth2Credential($oAuth2Credential)->build();
$aDataInfo = self::runExample(new AdWordsServices(), $session, 
self::AD_GROUP_ID);
}
}

GetKeywordIdeas::main();
On Tuesday, 24 November 2020 at 08:00:07 UTC+5:30 adsapiforumadvisor wrote:

> Hi Neetu,
>
> So our team can investigate this further, could you provide your customer 
> ID and the complete request 
> 
>  
> and response 
> 
>  
> logs that were generated?
>
> In addition, could you confirm whether the same input generated results in 
> the Keyword Planner ? 
> If yes, could you also send a screenshot?
>
> You may send the requested details using the *Reply privately to author* 
> option.
>
> Best regards,
>
> [image: Google Logo] 
> Peter Laurence Napa Oliquino 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q27v7E8:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to

Re: Google Adword API - Not getting data for some of the Keywords.

2020-11-23 Thread Neetu Varshney
Hello Matt,
Thanks for the reply

As I using the code 
from 
https://github.com/googleads/googleads-php-lib/blob/6c3e8c7c7d5023535a836a7a65e6813fcca6d9ae/examples/AdWords/v201809/Optimization/GetKeywordIdeas.php
 
here, and I get result for "bakery", "pastries", "birthday cake", but as I 
changed these keywords by "Biden, Covid 19" etc, then got no values of 
"Search Volume", CPC, etc.

I am using the same code from the above URL, only changed the 
authentication cofiguration. 
Please help me.

On Friday, 20 November 2020 at 23:29:24 UTC+5:30 adsapiforumadvisor wrote:

> Hi Neetu,
>
> I ran the code sample against my account, using the phrases 'Covid 19', 
> 'Biden' and 'Trump', and I did get results by changing line 179:
>
> relatedToQuerySearchParameter.setQueries(new String[] {"bakery", 
> "pastries", "birthday cake"});
>
> Are you providing an ad group ID as an argument for the keyword planner? 
>
> Thanks,
> Matt
> Google Ads API Team
>
> [image: Google Logo] 
> Matt 
> Google Ads API Team 
>   
>
> [image: Google Logo] 
> Matt 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q27v7E8:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4428df9a-a670-4616-b72d-7b59d1d16471n%40googlegroups.com.


Re: Google Adword API - Not getting data for some of the Keywords.

2020-11-19 Thread Neetu Varshney
Hello Ernie
Thanks for the reply,

As I am already following the same guideline (provided by you). I am 
getting "0" Search Volume for these keywords "Covid 19, Trump, Biden". 
Please suggest me so that I can get the right data.

On Friday, 20 November 2020 at 08:23:16 UTC+5:30 adsapiforumadvisor wrote:

> Hi Neetu,
>
> Thanks for posting your concern.
>
> Please ensure to specify the list of seed keywords related to the 
> results that you expecting to show (e.g. Covid 19, Trump, Biden). You may 
> refer to this guide 
> 
>  
> to know read more details on how to prepare request for retrieving keywords 
> ideas.
>
> Regards,
> [image: Google Logo] 
> Ernie John Blanca Tacata 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q27v7E8:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fbba79dd-fa71-431b-a096-c50df7b85c13n%40googlegroups.com.


Google Adword API - Not getting data for some of the Keywords.

2020-11-19 Thread Neetu Varshney
Hello Team,

As I am using google Adword APIs from here 
https://developers.google.com/adwords/api/docs/samples/php/optimization#get-keywords-related-to-a-seed-keyword,

It is giving data for many of the "keywords like Paytm, apple, iPhone, 
amazon" etc.
But It is not giving data for some of the keywords like - "Covid 19, Trump, 
Biden, etc"

So I am not finding anything, please suggest to me how can I get data for 
all the keywords.

Thanks,
Neetu Varshney

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ffe2ba8b-fb61-49c0-9ee1-85b58165e6c7n%40googlegroups.com.


are clicks are converted clicks

2019-07-02 Thread neetu varshney
Hello Team

I have a query for google adword "Estimating Traffic" apis, on that api we 
get "Clicks Per Day" in response, can you tell me one thing that are these 
clicks like "Converted Clicks" or something like "Conversions".

Thanks in advance.
Neetu

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/316f188e-3bb6-4744-9ab7-ae440024f266%40googlegroups.com.


Impressions Per Day in "Estimating Traffic" API

2019-05-27 Thread neetu varshney
Hello Team,
Greeting!!

As i am hitting "Estimating Traffic" API, and I am getting Impressions 
value 612114854 for a keyword.
I think its a very big digit as an impression,please tell me its right or 
we have to divide some number  form original number.

Thanks,
Neetu

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8c493ca1-8aa3-45c2-91db-c1445632fb21%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Need to get avg. "avg Impressions","avg Clicks" ,"avg CTR" Estimating Traffic

2019-05-22 Thread neetu varshney
Hello Team

The actual currency value is in dollar format or what?

Thanks,
Neetu

On Tuesday, May 21, 2019 at 9:44:49 PM UTC+5:30, adsapiforumadvisor wrote:
>
> Hello Neetu,
>
> The cost field should be for the number of clicks that are estimated to 
> occur and the cost field is in micros so you have to divide it by 1,000,000 
> to get the actual currency value.
>
> Regards,
> Sai Teja, Google Ads API Team
>
> ref:_00D1U1174p._5001UAq8zE:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/33ec5714-5328-41ba-b41f-1dc7a85a4e17%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Need to get avg. "avg Impressions","avg Clicks" ,"avg CTR" Estimating Traffic

2019-05-22 Thread neetu varshney
Hello Sai,
Thanks for reply

Could you tell me one thing that which fields having values in micros -

   - Average CPC
   - Average Position
   - Click Through Rate
   - Clicks Per Day
   - Impressions Per Day
   - Total Cost

so that i will divide it by 1,000,000 to get actual value.

On Tuesday, May 21, 2019 at 9:44:49 PM UTC+5:30, adsapiforumadvisor wrote:
>
> Hello Neetu,
>
> The cost field should be for the number of clicks that are estimated to 
> occur and the cost field is in micros so you have to divide it by 1,000,000 
> to get the actual currency value.
>
> Regards,
> Sai Teja, Google Ads API Team
>
> ref:_00D1U1174p._5001UAq8zE:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/22a86a8b-c5d8-4a24-b528-aaeba6c27c50%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Traffic Estimate(Related to date range)

2019-05-22 Thread neetu varshney
Hello Sai,
Thanks for the update!!

So basically we are getting daily based estimation for keywords. 
There are no particular date specific estimations.

Thanks,
Neetu 


On Wednesday, May 22, 2019 at 2:40:41 AM UTC+5:30, adsapiforumadvisor wrote:
>
> Hello Neetu,
>
> The date you mentioned is the estimation for a day. There is no field to 
> filter the timings by week or month.
>
> Regards,
> Sai Teja, Google Ads API Team
>
> ref:_00D1U1174p._5001UAqEj8:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bd512f14-c241-4483-b1bd-3a6f9d3f3b48%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Traffic Estimate(Related to date range)

2019-05-21 Thread neetu varshney
Hello Team,

As i am using Traffic estimate api and getting data like *"Traffic cost", 
Ad position,Click per day *etc
Now I want to know one thing that is this data is monthly wise, week wise 
or day wise.

I need to Daily based data and want to make sure the feasibility of data 
that is exactly how much --

As well as is there any date range type filter in traffic estimates so that 
we can get data as according to our choice(either monthly, weekly or daily)

Please suggest.

Thanks ,
Neetu Varshney

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/87cc6190-c8d3-4700-9fbf-8771b6f3dce8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Need to get avg. "avg Impressions","avg Clicks" ,"avg CTR" Estimating Traffic

2019-05-21 Thread neetu varshney
Hello Sai
Thanks for reply

As i am using test adword accounta and I am using *traffic estimate ap*i, 
now i am searching for the keyword - *HP*
*Traffic cost -87969312 *
*Clicks -4.98*
*Ad position -5.89*

Like *clicks *are only 4.98 and *Traffic cost* is too high, so i just want 
to know that are *clicks *responsible for *traffic cost* or something else.
Please clear this section 

Thanks

On Tuesday, May 21, 2019 at 12:04:22 AM UTC+5:30, adsapiforumadvisor wrote:
>
> Hello Neetu,
>
> For most of the metrics you can find the definitions at the Google Ads 
> Help Guide , I 
> provided the links for few of the metrics below.
>
>- Average CPC 
> : The 
>average amount that you've been charged for a click on your ad. Average 
>cost-per-click (avg. CPC) is calculated by dividing the total cost of your 
>clicks by the total number of clicks 
>- Average Position  
>:A statistic that describes how your ad typically ranks against other ads. 
>This rank determines in which order ads appear on the page. 
>- Click Through Rate 
> : A ratio 
>showing how often people who see your ad end up clicking it. Clickthrough 
>rate (CTR) can be used to gauge how well your keywords and ads are 
>performing. 
>- Clicks Per Day: Estimated clicks for a day for the keyword you are 
>estimating. 
>- Impressions Per Day: It is the estimated impressions 
> for a day 
>for the keyword. 
>- Total Cost: It is the Estimated cost per a day for the keywords you 
>are estimating. 
>
>  Please let me know if you have any further questions.
>
> Regards,
> Sai Teja, Google ads API Team
>
>
> ref:_00D1U1174p._5001UAq8zE:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/549d1773-8e83-4fcd-8084-589a486ad993%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Need to get avg. "avg Impressions","avg Clicks" ,"avg CTR" Estimating Traffic

2019-05-20 Thread neetu varshney
Hello Team,
Thanks for the reply


   - Average CPC
   - Average Position
   - Click Through Rate
   - Clicks Per Day
   - Impressions Per Day
   - Total Cost

can you please elaborate all these field like what means "Average CPC" , 
"Average Position",  "Click Through Rate" ,"Clicks Per Day", "Impressions 
Per Day", "Total Cost"

Is total cost stands average cost for month or its per day cost.


On Wednesday, May 15, 2019 at 10:01:31 PM UTC+5:30, 
googleadsapi-forumadvisor wrote:
>
> Hello Neetu,
>
> Yes, you are right. Since the Traffic estimator service provides estimated 
> metrics for specified keyword. The "Clicks Per Day" represents the 
> estimated number of clicks that can be achieved for a day.
>
> Regards,
> Sai Teja, Google Ads API Team
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> https://ads-developers.googleblog.com/search/label/google_ads_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c2077e3d-1011-4d0b-ab15-d76694ed2090%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Need to get avg. "avg Impressions","avg Clicks" ,"avg CTR" Estimating Traffic

2019-05-15 Thread neetu varshney
Okay noted!!

So basically "Clicks Per Day" and "Impressions Per Day" are some nnu
SO if I got the ""Clicks Per Day" value 220 for "offer" keyword form 
traffic estimate google api then it means the keyword "offer" is clicked 
220 times in a day.
Am i right?

On Tuesday, May 14, 2019 at 2:21:55 AM UTC+5:30, googleadsapi-forumadvisor 
wrote:
>
> Hello Neethu,
>
> Avg impressions and avg clicks are not available, Since they are not even 
> available in the UI the calculation is not possible.
>
> Regards,
> Sai Teja, Google Ads API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> https://ads-developers.googleblog.com/search/label/google_ads_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> On 05/13/19 10:21:00 neetuva...@gmail.com  wrote:
>
> Hello Team
> As I am using estimate traffic api for google adword for keywords -
> Currently I am getting
>
>- Average CPC
>- Average Position
>- Click Through Rate
>- Clicks Per Day
>- Impressions Per Day
>- Total Cost
>
> As i am getting Avg CPC, Avg Position like i want to get Avg Clicks, Avg 
> Impression,
> So how can i achieve avg value, Is there needed any calculation for 
> getting avg information for these fields.
>
> Please provide me the solution.
>
> Thanks in advance,
> Neetu
>
> -- 
> -- 
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog:
> https://googleadsdeveloper.blogspot.com/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>  
> You received this message because you are subscribed to the Google
> Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/adwords-api/de80ad02-aeca-4a52-9b68-cbc45b76eb5b%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/42d94c5c-6592-48c1-9313-99a4a3d46d5c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Need to get avg. "avg Impressions","avg Clicks" ,"avg CTR" Estimating Traffic

2019-05-13 Thread neetu varshney
Hello Team
As I am using estimate traffic api for google adword for keywords -
Currently I am getting

   - Average CPC
   - Average Position
   - Click Through Rate
   - Clicks Per Day
   - Impressions Per Day
   - Total Cost

As i am getting Avg CPC, Avg Position like i want to get Avg Clicks, Avg 
Impression,
So how can i achieve avg value, Is there needed any calculation for getting 
avg information for these fields.

Please provide me the solution.

Thanks in advance,
Neetu

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/de80ad02-aeca-4a52-9b68-cbc45b76eb5b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Get keywords related to a seed keyword

2019-04-16 Thread neetu varshney
Thanks Sai :)

On Monday, April 15, 2019 at 9:45:01 PM UTC+5:30, googleadsapi-forumadvisor 
wrote:
>
> Hello Neetu,
>
> As Peter mentioned using the Test accounts to fetch keyword ideas might 
> result the junk data. You can expect similar keywords as mentioned above 
> when you use production account to fetch keyword ideas.
>
> Regards,
> Sai teja, Google Ads API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> https://ads-developers.googleblog.com/search/label/google_ads_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e56aee16-1d98-4ec7-91b1-2ef9af4201ab%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Get keywords related to a seed keyword

2019-04-12 Thread neetu varshney
Okay so if i use a manager account , than my results be like -

*Search a keyword "Paytm", than there would be related keywords like - 
paytm offers, paytm login, paytm code, paytm mall etc .*

So it would be same as above , am i right Mr. Peter ?

On Friday, April 12, 2019 at 5:35:20 PM UTC+5:30, Peter Bowen wrote:
>
> The junk text you're getting happens when you're using a test account or 
> if your token hasn't been approved yet.
>
> On Thursday, 11 April 2019 14:00:58 UTC+1, neetu varshney wrote:
>>
>> Hello Team,
>> As i am using Google Adword api for getting related keyword ideas, 
>> I am using "GetKeywordIdeas" apis for getting the keywords value.
>>
>>  $targetingIdeaService = $adWordsServices->get($session, 
>> TargetingIdeaService::class);
>>
>> // Create selector.
>> $selector = new TargetingIdeaSelector();
>> *$selector->setRequestType(RequestType::IDEAS);*
>> $selector->setIdeaType(IdeaType::KEYWORD);
>> $selector->setRequestedAttributeTypes(
>> [
>> AttributeType::KEYWORD_TEXT,
>> AttributeType::SEARCH_VOLUME,
>> AttributeType::AVERAGE_CPC,
>> AttributeType::COMPETITION,
>> AttributeType::CATEGORY_PRODUCTS_AND_SERVICES
>> ]
>> );
>>
>> > /**
>>  * Copyright 2017 Google Inc. All Rights Reserved.
>>  *
>>  * Licensed under the Apache License, Version 2.0 (the "License");
>>  * you may not use this file except in compliance with the License.
>>  * You may obtain a copy of the License at
>>  *
>>  * http://www.apache.org/licenses/LICENSE-2.0
>>  *
>>  * Unless required by applicable law or agreed to in writing, software
>>  * distributed under the License is distributed on an "AS IS" BASIS,
>>  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
>>  * See the License for the specific language governing permissions and
>>  * limitations under the License.
>>  */
>>
>> namespace Google\AdsApi\Examples\AdWords\v201809\Optimization;
>>
>> require __DIR__ . '/../../../../vendor/autoload.php';
>>
>> use Google\AdsApi\AdWords\AdWordsServices;
>> use Google\AdsApi\AdWords\AdWordsSession;
>> use Google\AdsApi\AdWords\AdWordsSessionBuilder;
>> use Google\AdsApi\AdWords\v201809\cm\Language;
>> use Google\AdsApi\AdWords\v201809\cm\NetworkSetting;
>> use Google\AdsApi\AdWords\v201809\cm\Paging;
>> use Google\AdsApi\AdWords\v201809\o\AttributeType;
>> use Google\AdsApi\AdWords\v201809\o\IdeaType;
>> use Google\AdsApi\AdWords\v201809\o\LanguageSearchParameter;
>> use Google\AdsApi\AdWords\v201809\o\NetworkSearchParameter;
>> use Google\AdsApi\AdWords\v201809\o\RelatedToQuerySearchParameter;
>> use Google\AdsApi\AdWords\v201809\o\RequestType;
>> use Google\AdsApi\AdWords\v201809\o\SeedAdGroupIdSearchParameter;
>> use Google\AdsApi\AdWords\v201809\o\TargetingIdeaSelector;
>> use Google\AdsApi\AdWords\v201809\o\TargetingIdeaService;
>> use Google\AdsApi\Common\OAuth2TokenBuilder;
>> use Google\AdsApi\Common\Util\MapEntries;
>>
>> /**
>>  * This example gets keyword ideas related to a seed keyword.
>>  */
>> class GetKeywordIdeas
>> {
>>
>> // If you do not want to use an existing ad group to seed your request, 
>> you
>> // can set this to null.
>> const AD_GROUP_ID = 'INSERT_AD_GROUP_ID_HERE';
>> const PAGE_LIMIT = 500;
>>
>> public static function runExample(
>> AdWordsServices $adWordsServices,
>> AdWordsSession $session,
>> $adGroupId
>> ) {
>> $targetingIdeaService = $adWordsServices->get($session, 
>> TargetingIdeaService::class);
>>
>> // Create selector.
>> $selector = new TargetingIdeaSelector();
>> $selector->setRequestType(RequestType::IDEAS);
>> $selector->setIdeaType(IdeaType::KEYWORD);
>> $selector->setRequestedAttributeTypes(
>> [
>> AttributeType::KEYWORD_TEXT,
>> AttributeType::SEARCH_VOLUME,
>> AttributeType::AVERAGE_CPC,
>> AttributeType::COMPETITION,
>> AttributeType::CATEGORY_PRODUCTS_AND_SERVICES
>> ]
>> );
>>
>> $paging = new Paging();
>> $paging->setStartIndex(0);
>> $paging->setNumberResults(10);
>>   

Re: Get keywords related to a seed keyword

2019-04-12 Thread neetu varshney

Hello Sai Teja,


The sample code using test account gives results - 

> Keyword with text 'birthday cake c7ea94a8', average monthly search volume 
> 3960895, average CPC 4864816, and competition 0.66 was found with 
> categories: 41, 10628, 21, 47
> Keyword with text 'bakery 6b76bfff', average monthly search volume 
> 5728336, average CPC 15754491, and competition 0.24 was found with 
> categories: 48, 83, 68, 10628
> Keyword with text 'bakery b8bf8bf9', average monthly search volume 
> 5169192, average CPC 19104287, and competition 0.88 was found with 
> categories: 16, 24, 9, 10628 etc


I just want to confirm one thing - what is --
why the keyword are like unusual dummy strings *"birthday cake c7ea94a8", 
"bakery **6b76bfff", "bakery 6b76bfff", "bakery b8bf8bf9",* How they are 
related to bakery keywords,

*If search a keyword "Paytm", than there would be related keywords like - 
paytm offers, paytm login, paytm code, paytm mall etc ,*

But i got like *"paytm c7ea94a8", "paytm 6b76bfff", "paytm 6b76bfff"*  etc

Please suggest me -




On Friday, April 12, 2019 at 1:25:18 AM UTC+5:30, googleadsapi-forumadvisor 
wrote:
>
> Hello Neetu,
>
> The did a sample run using my test account and the part of the results 
> copied below, 
>
> Keyword with text 'birthday cake c7ea94a8', average monthly search volume 
> 3960895, average CPC 4864816, and competition 0.66 was found with 
> categories: 41, 10628, 21, 47
> Keyword with text 'bakery 6b76bfff', average monthly search volume 
> 5728336, average CPC 15754491, and competition 0.24 was found with 
> categories: 48, 83, 68, 10628
> Keyword with text 'bakery b8bf8bf9', average monthly search volume 
> 5169192, average CPC 19104287, and competition 0.88 was found with 
> categories: 16, 24, 9, 10628
> Keyword with text 'bakery dee9a487', average monthly search volume 
> 4985818, average CPC 1924203, and competition 0.05 was found with 
> categories: 19, 10628, 30, 23
> Keyword with text 'birthday cake bc36e2b', average monthly search volume 
> 6602809, average CPC 6061040, and competition 0.95 was found with 
> categories: 73, 10628, 47, 63
> .
> .
>
> In the above example yo have to specify the AdGroupId and execute the 
> code from command line to see the similar results at your end. You can 
> follow the instructions mentioned here to download and install the php 
> client library as well. Please let me know if you have nay further 
> questions.
>
> Regards,
> Sai Teja, Google Ads API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> https://ads-developers.googleblog.com/search/label/google_ads_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> 
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7346b576-7f03-43d0-b646-2446913eda17%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Get keywords related to a seed keyword

2019-04-11 Thread neetu varshney
Hello Team,
As i am using Google Adword api for getting related keyword ideas, 
I am using "GetKeywordIdeas" apis for getting the keywords value.

 $targetingIdeaService = $adWordsServices->get($session, 
TargetingIdeaService::class);

// Create selector.
$selector = new TargetingIdeaSelector();
*$selector->setRequestType(RequestType::IDEAS);*
$selector->setIdeaType(IdeaType::KEYWORD);
$selector->setRequestedAttributeTypes(
[
AttributeType::KEYWORD_TEXT,
AttributeType::SEARCH_VOLUME,
AttributeType::AVERAGE_CPC,
AttributeType::COMPETITION,
AttributeType::CATEGORY_PRODUCTS_AND_SERVICES
]
);

http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

namespace Google\AdsApi\Examples\AdWords\v201809\Optimization;

require __DIR__ . '/../../../../vendor/autoload.php';

use Google\AdsApi\AdWords\AdWordsServices;
use Google\AdsApi\AdWords\AdWordsSession;
use Google\AdsApi\AdWords\AdWordsSessionBuilder;
use Google\AdsApi\AdWords\v201809\cm\Language;
use Google\AdsApi\AdWords\v201809\cm\NetworkSetting;
use Google\AdsApi\AdWords\v201809\cm\Paging;
use Google\AdsApi\AdWords\v201809\o\AttributeType;
use Google\AdsApi\AdWords\v201809\o\IdeaType;
use Google\AdsApi\AdWords\v201809\o\LanguageSearchParameter;
use Google\AdsApi\AdWords\v201809\o\NetworkSearchParameter;
use Google\AdsApi\AdWords\v201809\o\RelatedToQuerySearchParameter;
use Google\AdsApi\AdWords\v201809\o\RequestType;
use Google\AdsApi\AdWords\v201809\o\SeedAdGroupIdSearchParameter;
use Google\AdsApi\AdWords\v201809\o\TargetingIdeaSelector;
use Google\AdsApi\AdWords\v201809\o\TargetingIdeaService;
use Google\AdsApi\Common\OAuth2TokenBuilder;
use Google\AdsApi\Common\Util\MapEntries;

/**
 * This example gets keyword ideas related to a seed keyword.
 */
class GetKeywordIdeas
{

// If you do not want to use an existing ad group to seed your request, you
// can set this to null.
const AD_GROUP_ID = 'INSERT_AD_GROUP_ID_HERE';
const PAGE_LIMIT = 500;

public static function runExample(
AdWordsServices $adWordsServices,
AdWordsSession $session,
$adGroupId
) {
$targetingIdeaService = $adWordsServices->get($session, 
TargetingIdeaService::class);

// Create selector.
$selector = new TargetingIdeaSelector();
$selector->setRequestType(RequestType::IDEAS);
$selector->setIdeaType(IdeaType::KEYWORD);
$selector->setRequestedAttributeTypes(
[
AttributeType::KEYWORD_TEXT,
AttributeType::SEARCH_VOLUME,
AttributeType::AVERAGE_CPC,
AttributeType::COMPETITION,
AttributeType::CATEGORY_PRODUCTS_AND_SERVICES
]
);

$paging = new Paging();
$paging->setStartIndex(0);
$paging->setNumberResults(10);
$selector->setPaging($paging);

$searchParameters = [];
// Create related to query search parameter.
$relatedToQuerySearchParameter = new RelatedToQuerySearchParameter();
$relatedToQuerySearchParameter->setQueries(
[
'bakery',
'pastries',
'birthday cake'
]
);
$searchParameters[] = $relatedToQuerySearchParameter;

// Create language search parameter (optional).
// The ID can be found in the documentation:
// https://developers.google.com/adwords/api/docs/appendix/languagecodes
$languageParameter = new LanguageSearchParameter();
$english = new Language();
$english->setId(1000);
$languageParameter->setLanguages([$english]);
$searchParameters[] = $languageParameter;

// Create network search parameter (optional).
$networkSetting = new NetworkSetting();
$networkSetting->setTargetGoogleSearch(true);
$networkSetting->setTargetSearchNetwork(false);
$networkSetting->setTargetContentNetwork(false);
$networkSetting->setTargetPartnerSearchNetwork(false);

$networkSearchParameter = new NetworkSearchParameter();
$networkSearchParameter->setNetworkSetting($networkSetting);
$searchParameters[] = $networkSearchParameter;

// Optional: Use an existing ad group to generate ideas.
if (!empty($adGroupId)) {
$seedAdGroupIdSearchParameter = new SeedAdGroupIdSearchParameter();
$seedAdGroupIdSearchParameter->setAdGroupId($adGroupId);
$searchParameters[] = $seedAdGroupIdSearchParameter;
}

Re: Need to find Search results of multiple keywords

2019-04-10 Thread neetu varshney
Hello Ejey,
I am getting this result from "Custom Search JSON API" .

   1. searchInformation:
  1. formattedSearchTime: "0.46"
  2. formattedTotalResults: "16,100,000"
  3. searchTime: 0.460398
  4. totalResults: "1610"
   

is there anything in google adword api, which provides "search results" 
like above. Please suggest me.


On Wednesday, April 10, 2019 at 1:15:36 PM UTC+5:30, neetu varshney wrote:
>
> Hello Team,
> Please suggest me how can i get the google search results of multiple 
> keywords for sing;e API call, I had already used "Custom Search JSON API", 
> But that take only one query(string) at one time and i need to get search 
> results of multiple keywords, so suggest me what should be the appropriate 
> solution.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4875ea7f-dcd9-43b1-989c-57f78911ee4a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Need to find Search results of multiple keywords

2019-04-10 Thread neetu varshney
Hello Ejay

I already used Google keyword planner tool, provides keyword ideas like 
CPC, SEARCH_VOLUME,COMPETITION etc,
But i need Search Results like --

   1. searchInformation:
  1. formattedSearchTime: "0.46"
  2. formattedTotalResults: "16,100,000"
  3. searchTime: 0.460398
  4. totalResults: "1610"
   
for multiple keywords.

On Wednesday, April 10, 2019 at 1:15:36 PM UTC+5:30, neetu varshney wrote:
>
> Hello Team,
> Please suggest me how can i get the google search results of multiple 
> keywords for sing;e API call, I had already used "Custom Search JSON API", 
> But that take only one query(string) at one time and i need to get search 
> results of multiple keywords, so suggest me what should be the appropriate 
> solution.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6d96400f-cabd-4f77-b631-37f8cd3c5708%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Need to find Search results of multiple keywords

2019-04-10 Thread neetu varshney
Hello Team,
Please suggest me how can i get the google search results of multiple 
keywords for sing;e API call, I had already used "Custom Search JSON API", 
But that take only one query(string) at one time and i need to get search 
results of multiple keywords, so suggest me what should be the appropriate 
solution.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9232a62e-aa95-429c-93f6-be5413368c38%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to get search results from Radius Targeting or any other adword API for multiple keywords

2019-04-10 Thread neetu varshney
Hello Team,
Please suggest me - How to get search results from Radius Targeting or any 
other adword API for multiple keywords

I am using php, javascript , nodejs

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e502dff7-2513-43ed-ab83-49a07298f10b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How we get google search results of keywords from adword apis, Please suggest m.

2019-04-10 Thread neetu varshney
Hello Team,
Please suggest me hoe i can get  "Google search results" of keywords from 
google adword api.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f95472ff-1ed7-46fa-b58c-2893e685aae1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Issue in Google adword api vesion v201802

2019-02-05 Thread neetu varshney
Hello Team,

As I am using the Google adword API for getting EstimateKeywordTraffic of 
related keyword since 1 year,
Now sometimes I am getting this error --


*Fatal error*: Uncaught Google\AdsApi\AdWords\v201802\cm\ApiException: 
[RequestError.UNSUPPORTED_VERSION @ ; trigger:'You are accessing an AdWords 
API version v201802 that has been discontinued. Calls to this version may 
fail. Please visit the AdWords API blog for information on migration to the 
new AdWords API version.'] in 
/var/www/html/vendor/googleads/googleads-php-lib/src/Google/AdsApi/Common/Util/Reflection.php:43
 
Stack trace: #0 
/var/www/html/vendor/googleads/googleads-php-lib/src/Google/AdsApi/Common/Util/Reflection.php(43):
 
ReflectionClass->newInstanceArgs(Array) #1 
/var/www/html/vendor/googleads/googleads-php-lib/src/Google/AdsApi/Common/AdsSoapClient.php(202):
 
Google\AdsApi\Common\Util\Reflection->createInstance('Google\\AdsApi\\A...', 
Array) #2 
/var/www/html/vendor/googleads/googleads-php-lib/src/Google/AdsApi/Common/AdsSoapClient.php(164):
 
Google\AdsApi\Common\AdsSoapClient->parseApiExceptionFromSoapFault(Object(SoapFault))
 
#3 
/var/www/html/vendor/googleads/googleads-php-lib/src/Google/AdsApi/AdWords/v201802/o/
 
in 
*/var/www/html/vendor/googleads/googleads-php-lib/src/Google/AdsApi/Common/Util/Reflection.php*
 on 
line *43*


*So please suggest me what is the exact issue? and share the solution*

I had read some of blogs of google adword API 
(https://ads-developers.googleblog.com/2017/10/adwords-api-release-and-sunset-schedule.html
) 
and there is mentioned below like --
This brings the average lifespan of every API version released in 2018 down 
to nine months.

Please provide me a solution so that i can fix these issues.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e8f0a7b7-e7e1-4898-8e25-0b43a5731d15%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


GetKeywordIdeas Data Issue

2018-05-17 Thread neetu varshney

Hello Team,
I am using test account.
As i am using "GetKeywordIdeas" API, for getting the keyword related 
historical stats.
I was searching the keyword "Amazon" and i was getting many result like -  

"Keyword with text 'amazon ad4ebbee', average monthly search volume 
5215481, average CPC 15069072, and competition 0.63 was found with 
categories: 25, 34, 10628, 30 
Keyword with text 'amazon d7edbc2d', average monthly search volume 5843438, 
average CPC 19432472, and competition 0.11 was found with categories: 
10628, 45, 38, 55 
Keyword with text 'amazon cdc10803', average monthly search volume 6772506, 
average CPC 19645951, and competition 0.36 was found with categories: 41, 
10, 10628, 22 " ETC

I am unable to get the Keyword Text (amazon ad4ebbee , amazon d7edbc2d , 
amazon cdc10803 ), what is the id after word amazon in keyword text. 

Please reply me


Thanks Neetu

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2245e045-3218-48b0-bac5-814d169a6abc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.