AdWords oauth will not connect when using Read only access level logins

2014-02-24 Thread TJ
Our application has successfully connected to many adwords accounts via 
oauth. We stumbled on a tricky issue today where we could not get an oauth 
connection. Turns out, I was able to replicate the successful/unsuccessful 
connection simply by toggling the adwords login from standard (successful) 
to read-only (unsuccessful) and then attempting a fresh, new connection via 
oauth. 

Oddly there is another recent forum post where Google recommended using 
read-only logins to limit APIs to read-only, opposed to read/write.
https://groups.google.com/forum/#!topic/adwords-api/B0VVHqNOLYs

Is this a known issue/bug or might we have a coding issue somewhere in our 
application?

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to 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: AdWords oauth will not connect when using Read only access level logins

2014-02-25 Thread Takeshi Hagikura (AdWords API Team)
Hi TJ,

Let me confirm, are your requests using CustomerService? 
If so there is a similar thread, please provide the details that are 
different from others. We are looking into the issue. 
https://groups.google.com/d/msg/adwords-api/bwtCmZXTC10/XYwGaQPbtmgJ

Best,
- Takeshi, AdWords API Team

On Tuesday, February 25, 2014 11:06:10 AM UTC+9, TJ wrote:
>
> Our application has successfully connected to many adwords accounts via 
> oauth. We stumbled on a tricky issue today where we could not get an oauth 
> connection. Turns out, I was able to replicate the successful/unsuccessful 
> connection simply by toggling the adwords login from standard (successful) 
> to read-only (unsuccessful) and then attempting a fresh, new connection via 
> oauth. 
>
> Oddly there is another recent forum post where Google recommended using 
> read-only logins to limit APIs to read-only, opposed to read/write.
> https://groups.google.com/forum/#!topic/adwords-api/B0VVHqNOLYs
>
> Is this a known issue/bug or might we have a coding issue somewhere in our 
> application?
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to 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: AdWords oauth will not connect when using Read only access level logins

2014-02-26 Thread TJ
Confirmed yes, we are using Customer Service. And similar to the other 
posting, we are getting this response 
OperationAccessDenied.ACTION_NOT_PERMITTED. And the login type (read only) 
has been set that way for years and this bug just started happening in 
early February. We fixed it temporarily by switching the login type to 
Standard, but would prefer one of two solutions for a more robust API:

1) Enable read only to work with APIs so we don't have to fiddle with login 
access levels (preferred solution)
or
2) Make a unique, clear API error that says Read-only does not work with 
API so that we can parse and display this error in a UI


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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: AdWords oauth will not connect when using Read only access level logins

2014-02-27 Thread Takeshi Hagikura (AdWords API Team)
Hi TJ,

The behavior of the fact that requests for CustomerService with read-only 
access fails is the issue on the AdWords API side. 
We should fix that. (#1 solution)

I checked it with the relevant engineer. 
The fix will be applied anytime soon. 

Best,
- Takeshi, AdWords API Team

On Wednesday, February 26, 2014 8:58:44 PM UTC+9, TJ wrote:
>
> Confirmed yes, we are using Customer Service. And similar to the other 
> posting, we are getting this response 
> OperationAccessDenied.ACTION_NOT_PERMITTED. And the login type (read only) 
> has been set that way for years and this bug just started happening in 
> early February. We fixed it temporarily by switching the login type to 
> Standard, but would prefer one of two solutions for a more robust API:
>
> 1) Enable read only to work with APIs so we don't have to fiddle with 
> login access levels (preferred solution)
> or
> 2) Make a unique, clear API error that says Read-only does not work with 
> API so that we can parse and display this error in a UI
>
>
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.