AdWords conversion tracking changes

2014-02-04 Thread Joey Muller
I read today that in February, AdWords is rolling out some changes to how 
it counts conversions. Specifically:

'Conversions (1-per-click)' will be renamed 'Converted clicks'. This new 
> column name is a more accurate representation of what this column actually 
> counts: clicks that result in at least one conversion. In most cases, 
> you'll want to measure conversions, not just converted clicks.
> 'Conversions (many-per-click)' will be replaced by a new 'Conversions' 
> column that has additional functionality. This column will count 
> conversions, based on how you want each conversion action to be counted.



My questions are:
1. When will this roll out to the AdWords API?
2. How will this affect the field names of the AdWords API?


Thank you,
Joey

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
For more options, visit https://groups.google.com/groups/opt_out.


oAuth for Installed Application: Can I use oAuth for Web Application instead?

2013-05-22 Thread Joey Muller
I have created a web app that authorizes a customer's AdWords account, and 
then sends daily emailed reports about the customer's AdWords campaigns. 
The authorization process happens once, and with refresh tokens we use cron 
jobs to deliver the reports daily, on behalf of the customer. I have gone 
back and forth with my developer on this -- I am not the developer -- and 
from everything I have read, I should be able to use oAuth for Web 
Applications in Offline mode. However, he claims we must use the Installed 
Application scenario. 

The reason I ask is because we have a problem. The requirement to copy an 
authorization code into the web app is confusing. The language is even 
confusing: "Please copy this code, switch to your application and paste it 
there." Most of our test users cannot get past this step.

Also, have you ever tried to copy such an authorization code on an iPhone? 
It does not work. The process is definitely not mobile-friendly, which is 
another big problem.

You can test it for yourself here: http://www.reportly.com.

Thanks,
Joey

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
For more options, visit https://groups.google.com/groups/opt_out.




Re: oAuth or ClientLogin?

2013-02-01 Thread Joey Muller
Hi David,

With the installed applications flow, do users need to copy and paste an 
authorization code into our app if we're using oauth2? My developer thinks 
so. I thought I read otherwise.

Thanks,
Joey

On Friday, November 16, 2012 3:58:56 PM UTC-8, David Torres wrote:
>
> Hi Joey,
>
> Our recommendation, moving forward is to use OAuth2. I recommend you 
> looking at the installed applications flow, in which a single user 
> interaction is required to authorize your application access to their 
> account and will grant you a refresh token - that never expires - that your 
> scheduler can re-use to authorize requests.
>
> Using OAuth2 will ensure a longer-life to your application in terms of 
> authorization as opposed to ClientLogin which we have already marked as a 
> deprecated authorization method.
>
> Best,
>
> - David Torres - AdWords API Team
>
> On Wednesday, November 14, 2012 2:55:54 PM UTC-5, Joey Muller wrote:
>>
>> I have developed a tool for my agency's internal clients. It uses a 
>> scheduler to send automatica emails containing AdWords data. Now, some 
>> other folks are interested in using this, but their AdWords accounts are 
>> not linked to our MCC. What would be the best way to handle this? Would I 
>> use a sign-on or authentication process using oAuth? Or would I store email 
>> and password combinations in a database and use ClientLogin? I recall third 
>> party PPC platforms like Marin and others use the email/password combo 
>> solution, but I'm wondering if there is something slicker.
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
For more options, visit https://groups.google.com/groups/opt_out.




Re: oAuth or ClientLogin?

2012-11-26 Thread Joey Muller
Just to reiterate my last question, will oauth work for accounts that are 
unlinked (external) to our MCC?

On Friday, November 23, 2012 11:44:59 AM UTC-8, Joey Muller wrote:
>
> Thank you, David. I will take a look at the installed application flow.
>
> Will this also work for adwords accounts that are external or unlinked to 
> our MCC? The goal is to authorize any adwords user to use our web app.
>
> Thanks much,
> Joey
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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





Re: oAuth or ClientLogin?

2012-11-23 Thread Joey Muller
Thank you, David. I will take a look at the installed application flow.

Will this also work for adwords accounts that are external or unlinked to our 
MCC? The goal is to authorize any adwords user to use our web app.

Thanks much,
Joey

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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





oAuth or ClientLogin?

2012-11-14 Thread Joey Muller
I have developed a tool for my agency's internal clients. It uses a 
scheduler to send automatica emails containing AdWords data. Now, some 
other folks are interested in using this, but their AdWords accounts are 
not linked to our MCC. What would be the best way to handle this? Would I 
use a sign-on or authentication process using oAuth? Or would I store email 
and password combinations in a database and use ClientLogin? I recall third 
party PPC platforms like Marin and others use the email/password combo 
solution, but I'm wondering if there is something slicker.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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