google-api-ads-ruby
google-api-ads-ruby copied to clipboard
Ad Manager SOAP API Client Libraries for Ruby
It would be nice if this library supported exeception classes for the types of exceptions that could be received. Right now, in order to catch a specific error, I end...
We noticed that this library still has reference to a soon to be deprecated out-of-band OAuth method in [oauth2_handler.rb](https://github.com/googleads/google-api-ads-ruby/blob/main/ads_common/lib/ads_common/auth/oauth2_handler.rb#L39) This was based on the [migration documentation](https://developers.google.com/identity/protocols/oauth2/resources/oob-migration). Are there plans to...
Upgrade fails because of dependency on nokogiri version (1.12.5) Follow up from [comment](https://github.com/googleads/google-api-ads-ruby/commit/d75a1744845f21b3360c01f3f98a09493bb8ba55#r139405807) We should not depend on such an old nokogiri version. Also it has to be consistent with...
Faraday is used to pass to Signet::OAuth2::Client instance. https://github.com/googleads/google-api-ads-ruby/blob/main/ads_common/lib/ads_common/auth/oauth2_handler.rb#L104 Signet does not depend Faraday 1.x, so we can remove the upper dependency in this gem. https://github.com/googleapis/signet/blob/main/signet.gemspec#L23
Hello, I am trying to create a code routine that will clean old content. To do so, I want to use a statement to list the content objects that have...
After updating to google-dfp-api 3.2.0 (we prev. used 2.5.0), we see: ``` undefined method `snakecase' for "AdManagerApi":String (NoMethodError) ``` when calling `service`: ``` require 'ad_manager_api' ... dfp = AdManagerApi::Api.new(...) service...