Re: PHP Get First Page Cpc Micros

2023-04-05 Thread ma...@sumer.me
I think you misunderstood me. My problem is:

If I don't use this with WHERE 
ad_group_criterion.position_estimates.first_page_cpc_micros > 0, PHP 
returns "null" for some words and gives a Fatal Error and the process is 
interrupted.

ad_group_criterion.position_estimates.first_page_cpc_micros > 0 when I use 
this, I don't get all the words either. In other words, I need to do 2 
actions to get all the words in the ad group in that campaign.

How can I get all the words without getting a Fatal Error?



On Tuesday, 4 April 2023 at 19:54:33 UTC+3 Google Ads API Forum Advisor 
wrote:

> Hello,
>
> Thank you for getting back to us.
>
> I understand that in this case, with your current query, you want to 
> obtain *keyword*. I can see that the in the query “
> *ad_group_criterion.keyword.text*” is not present in the Select clause.
>
> Please try using the sample query and substituting some of the values for 
> the WHERE clause to see if you will get your expected data:
>
>
> SELECT
> metrics.clicks,
> metrics.impressions,*ad_group_criterion.keyword.text,*
>
>
> ad_group_criterion.position_estimates.first_page_cpc_micros
> FROM keyword_view
> WHEREcampaign.id="*XX*" ANDad_group.id="*YY*" AND
> ad_group_criterion.position_estimates.first_page_cpc_micros > 0
>
> Please let me know how it goes.
>
> Regards,
> [image: Google Logo] Google Ads API Team 
>
> ref:_00D1U1174p._5004Q2a2Tfz: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 
"Google Ads API and AdWords 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/de1ea1fc-f393-49f0-9aba-4dd233a2630cn%40googlegroups.com.


Re: PHP Get First Page Cpc Micros

2023-04-04 Thread ma...@sumer.me
This problem still continues with V13

I do not receive errors when I use a code sample like below. But in this 
case, I can't get *all the words*.

*SELECT metrics.clicks, metrics.impressions, 
ad_group_criterion.position_estimates.first_page_cpc_micros FROM 
keyword_view WHERE campaign.id="XX" AND ad_group.id="YY" AND 
ad_group_criterion.position_estimates.first_page_cpc_micros > 0*

I want to take all the words and not to get errors. (Only with 1 query) how 
to do this?

*Error: *Fatal error: Uncaught Error: Call to a member function 
getFirstPageCpcMicros() on null in...

On Thursday, 7 July 2022 at 16:20:48 UTC+3 Google Ads API Forum Advisor 
wrote:

> Hi Shobha,
>
> Thanks for getting back to us.
>
> I can see that your GAQL is valid, however, your PHP code throws the Fatal 
> error:  Uncaught Error: Call to a member function getFirstPageCpcMicros(). 
> This seems to be more related to PHP code implementation.
>
> You may refer to this *PHP client library* 
>  hosted at GitHub, and this* 
> PHP reporting example * 
> on
>  
> how you can get report data on your end. If you’re using a PHP client 
> library and still encountering said Fatal error, then I recommend you to 
> reach out to PHP client library owners by opening a new issue with their 
> team via *issue tracker* 
> , for further 
> assistance. 
>
> Regards,
> [image: Google Logo] 
> Yasar 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2a2Tfz: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 
"Google Ads API and AdWords 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/6646e120-766f-4c97-96dd-60caf90130fcn%40googlegroups.com.


Re: I can't get Responsive Search Ads Headlines and Descriptions

2022-07-18 Thread ma...@sumer.me
Thanks for your help. I solved like this:

$ad = $googleAdsRow->getAdGroupAd()->getAd();
$responsiveSearchAdInfo = $ad->getResponsiveSearchAd();

$assets_headlines = $responsiveSearchAdInfo->getHeadlines();

foreach($assets_headlines as $asset){
echo $asset->getText();
}

On Monday, 18 July 2022 at 14:19:56 UTC+3 adsapi wrote:

> Hi Mahir,
>
> Thank you for raising this concern to the Google Ads API support team.
>
> With regard to your concern, you can use this code 
> 
>  as 
> reference in Google Ads API. However, if the issue is still persisting I 
> would suggest you reach out to the author of the PHP client library to get 
> help here. You can reach out to them via the PHP issues tracker on github 
>  to get further 
> assistance here as they are more equipped for this matter.
>
> Best regards,
> [image: Google Logo] 
> Jinky 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2cX3bf: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 
"Google Ads API and AdWords 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/5d9962a5-e7b3-4aac-83b9-490e7662e1b3n%40googlegroups.com.


I can't get Responsive Search Ads Headlines and Descriptions

2022-07-18 Thread ma...@sumer.me
Hi,

I am using PHP Client Library. I get every metric, resource etc. except 
responsive search ads headlines and descriptions.

When i run this code sample i get an error like this:

print_r($googleAdsRow->getAdGroupAd()->getAd()->getResponsiveSearchAd()->getHeadlines());

*Fatal error*: Allowed memory size of 134217728 bytes exhausted (tried to 
allocate 58724352 bytes)...

How can i get all texts?

Note: I tried upgrade memory and try sample code like this:


$responsiveSearchAdInfo = $ad->getResponsiveSearchAd();

printf(

'Headlines:%1$s%2$sDescriptions:%1$s%3$s%1$s',

PHP_EOL,

self::convertAdTextAssetsToString($responsiveSearchAdInfo->getHeadlines()),

self::convertAdTextAssetsToString($responsiveSearchAdInfo->getDescriptions())

);

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/8ae4db52-7ee9-4eaf-bc00-211c462c6da7n%40googlegroups.com.


How can i change existing campaign budget?

2022-04-26 Thread ma...@sumer.me
Hi,

I am using Ads API v10 with PHP. And i can't update campaign budget with 
update sample.

Do I always have to create a new budget and add it to that campaign to 
update the budget? Like this:

$budget = new CampaignBudget([
'name' => $budgetId.time(),
'amount_micros' => $amount
]);

$campaignBudgetOperation = new CampaignBudgetOperation();
$campaignBudgetOperation->setCreate($budget);

$campaignBudgetServiceClient = 
$googleAdsClient->getCampaignBudgetServiceClient();
$response = $campaignBudgetServiceClient->mutateCampaignBudgets(
$customerId,
[$campaignBudgetOperation]
);

$addedBudget = $response->getResults()[0];

$budgetResourceName = $addedBudget->getResourceName();

$campaign = new Campaign([
'resource_name' => ResourceNames::forCampaign($customerId, 
$campaignId),
'campaign_budget' => $budgetResourceName
]);

$campaignOperation = new CampaignOperation();
$campaignOperation->setUpdate($campaign);

$campaignOperation->setUpdateMask(FieldMasks::allSetFieldsOf($campaign));

$campaignServiceClient = 
$googleAdsClient->getCampaignServiceClient();
$response = $campaignServiceClient->mutateCampaigns(
$customerId,
[$campaignOperation]
);

$updatedCampaign = $response->getResults()[0];

Is there no way to update the existing budget with the budget id?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/22f6b3cf-2509-4b8b-9ab8-6f1dc4320e03n%40googlegroups.com.


PHP Get First Page Cpc Micros

2022-04-12 Thread ma...@sumer.me
I am using Google Ads API V10 PHP Libray. I'm trying to get the 
"ad_group_criterion.position_estimates.first_page_cpc_micros," metric. But 
I am getting null error. Where am I doing wrong?

Sample Query:
SELECT campaign.id, campaign.name, ad_group_criterion.keyword.text, 
ad_group_criterion.position_estimates.first_page_cpc_micros FROM 
keyword_view

PHP Sample:
$campaign_id = $googleAdsRow->getCampaign()->getId();
$campaign_name = $googleAdsRow->getCampaign()->getName();
$keyword = $googleAdsRow->getAdGroupCriterion()->getKeyword()->getText();
$first_page_cpc 
= 
$googleAdsRow->getAdGroupCriterion()->getPositionEstimates()->getFirstPageCpcMicros();

Error:
*Fatal error*: Uncaught Error: Call to a member function 
getFirstPageCpcMicros() on null in...

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 
"Google Ads API and AdWords 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/716255c6-bf09-4660-9a45-1dc3dee975f6n%40googlegroups.com.


AdWords API and Ads Interface are very slow in Turkey

2021-04-23 Thread ma...@sumer.me
Hi,

We use the Google AdWords API, but since yesterday (22.04.2021) there has 
been an incredible slowness and we often get "timeout" errors. What is the 
reason of this? How can we solve it?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/9cee5d75-1878-45ed-88eb-a15488e096adn%40googlegroups.com.


Targeting Ideas gives an error: INSUFFICIENT_SEARCH_PARAMETERS

2021-01-21 Thread ma...@sumer.me
Hi,

I want to use Targeting Ideas like Keyword Planner. I tried this code but 
got an error. How can i solve this?

Error: [TargetingIdeaError.INSUFFICIENT_SEARCH_PARAMETERS @ 
selector.searchParameters]

*Code:*

$adWordsServices = new AdWordsServices();
$session = main('XXX-XXX-');
$targetingIdeaService = $adWordsServices->get($session, 
TargetingIdeaService::class);

$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 = [];
$relatedToQuerySearchParameter = new RelatedToQuerySearchParameter();
$relatedToQuerySearchParameter->setQueries(
 [
   'iphone 11 pro max'
 ]
);

$searchParameters[] = $relatedToQuerySearchParameter;

$page = $targetingIdeaService->get($selector);
   
   $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()
   );
   printf(
   "Keyword with text '%s', average monthly search volume %d, "
   . "average CPC %d, and competition %.2f was found with 
categories: %s\n",
   $keyword,
   $searchVolume,
   ($averageCpc === null) ? 0 : $averageCpc->getMicroAmount(),
   $competition,
   $categoryIds
   );
   }
}

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3a3b9c80-6a7f-49d2-9e8e-b42e50918836n%40googlegroups.com.


Re: How Can I Connect to Google Ads Account Using Google Login with PHP?

2020-07-17 Thread ma...@sumer.me
Firstly i can't click to "Reply privately to author" button. This button is 
disabled.

And actually my main problem is not about Google AdWords or Google Ads. My 
first problem is i can't access to any customers account with Google Login. 
How can i do this with PHP? If you click to this link, you can see what i 
mean.

https://panel.adresgezgini.com/common/functions/

8 Temmuz 2020 Çarşamba tarihinde saat 16:37:55 UTC+2 itibarıyla 
adsapiforumadvisor şunları yazdı:

> Hello,
>
> I can see that you are using AdWords API in your code to make calls to 
> CampaignService. Can you please provide the complete detailed logs of the 
> request and response so that I can take a look at the errors you are 
> receiving? You can enable logging by following this 
>  guide. Since you 
> mentioned not being able to access the account, can you also provide the 
> customerClientId along with the email you used to authenticate the API 
> call? Please ensure you "*Reply privately to author" *when providing this 
> information.
>
>
> Regards,
> Danica, Google Ads API Team
>
> ref:_00D1U1174p._5004Q21j8f3: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/039ceacb-ca4c-4e90-809c-59a299238651n%40googlegroups.com.


Re: How Can I Connect to Google Ads Account Using Google Login with PHP?

2020-07-07 Thread ma...@sumer.me
Are you sure this is not possible? Because Wordstream actually does this 
job. When you log in to them with your Google Ads account, they can manage 
your campaigns.

Actually, I succeeded partially in the link below, but for some reason I 
cannot get access to the account. Where is my fault I'm trying to figure it 
out.

Link: https://panel.adresgezgini.com/common/functions/

Code: 

require 'google-api/vendor/autoload.php';
use Google\Auth\OAuth2;
use Google\AdsApi\AdWords\AdWordsServices;
use Google\AdsApi\AdWords\AdWordsSessionBuilder;
use Google\AdsApi\AdWords\v201809\cm\CampaignService;
use Google\AdsApi\Common\OAuth2TokenBuilder;

session_start();
$oauth2 = new OAuth2([
'authorizationUri' => 'https://accounts.google.com/o/oauth2/v2/auth',
   'tokenCredentialUri' => 'https://www.googleapis.com/oauth2/v4/token',
   'redirectUri' => 'X',
   'clientId' => 'XX,
   'clientSecret' => 'X',
   'scope' => 'https://www.googleapis.com/auth/adwords',
   'refresh_token' => X'
]);
if(!isset($_GET['code'])){
$oauth2->setState(sha1(openssl_random_pseudo_bytes(1024)));
$_SESSION['oauth2state'] = $oauth2->getState();
$config = [
   
   'access_type' => 'offline',
   'prompt' => 'consent',
];
header('Location: ' . $oauth2->buildFullAuthorizationUri($config));
exit;
 
} elseif (empty($_GET['state']) || ($_GET['state'] !== 
$_SESSION['oauth2state'])){
  
  unset($_SESSION['oauth2state']);
  exit('Invalid state.');
 
} else {
$oauth2->setCode($_GET['code']);
$authToken = $oauth2->fetchAuthToken();
$refreshToken = $authToken['refresh_token'];
$path = "xx/google-api/vendor/adsapi_php.ini";
$session = (new AdWordsSessionBuilder())
   ->fromFile($path)
   ->withOAuth2Credential($oauth2)
   ->build();
$adWordsServices = new AdWordsServices();
$campaignService = $adWordsServices->get($session, CampaignService::class);
print_r($campaignService);
}

7 Temmuz 2020 Salı tarihinde saat 21:52:43 UTC+2 itibarıyla 
adsapiforumadvisor şunları yazdı:

> Hello,
>
> Thank you for clarifying! It does not look like this is possible for 
> Google Ads API. I have raised a feature request on your behalf. If the team 
> decides this is a viable request, you can find updates on our blog 
>  if it is available in future 
> releases.
>
> Let me know if you have any additional questions.
>
>
> Regards,
> Danica, Google Ads API Team
>
> ref:_00D1U1174p._5004Q21j8f3: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/ca7fc2db-bd71-41e3-bf95-65c6f4e7d928n%40googlegroups.com.


Re: How Can I Connect to Google Ads Account Using Google Login with PHP?

2020-07-07 Thread ma...@sumer.me
First of all, thank you for the help. But I guess I couldn't express it 
fully.

I am currently using the Google Ads API, there is no problem. I want to 
connect to another client's Ads account and manage their campaigns. I want 
to use Google Login for this.

So the customer will click on a link that I will give and say Google Login 
and I will be able to access his account. Like Wordstream login system. 
(https://app.wordstream.com/login)

6 Temmuz 2020 Pazartesi tarihinde saat 21:01:34 UTC+2 itibarıyla 
adsapiforumadvisor şunları yazdı:

> Hello,
>
> Thank you for reaching out. To connect to the API and make your first 
> request, you can follow our Quickstart Guide 
> . 
> We have a PHP client library available here 
>  where 
> you can find sample code as well. Let me know if you have any additional 
> questions while trying to set up your API connection.
>
> Regards,
> Danica, Google Ads API Team
>
> ref:_00D1U1174p._5004Q21j8f3: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/4c001c29-6f81-491e-9562-127af1778029n%40googlegroups.com.


How Can I Connect to Google Ads Account Using Google Login with PHP?

2020-07-04 Thread ma...@sumer.me
I have an Google Ads API Account. And I want to login to customers account 
with google login and check account using API. How can i connect? Is there 
any documentation or PHP sample code?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/6d91b915-4d40-44b4-a0cb-71cdc5a7a58an%40googlegroups.com.