Module: FbGraph::Connections::AdGroups

Included in:
AdAccount, AdCampaign
Defined in:
lib/fb_graph/connections/ad_groups.rb

Instance Method Summary collapse

Instance Method Details

#ad_group!(options = {}) ⇒ Object

Note: AdGroups can only be created via the AdAccount connection. Even though it makes sense, they cannot be created via the AdCampaign connection



15
16
17
18
19
20
21
22
# File 'lib/fb_graph/connections/ad_groups.rb', line 15

def ad_group!(options = {})
  ad_group = post options.merge(:connection => :adgroups)
  AdGroup.new ad_group[:id], options.merge(ad_group).merge(
    :access_token => options[:access_token] || self.access_token,
    :ad_id => ad_group[:id].to_i,
    :adgroup_id => ad_group[:id].to_i
  )
end

#ad_groups(options = {}) ⇒ Object



4
5
6
7
8
9
10
11
# File 'lib/fb_graph/connections/ad_groups.rb', line 4

def ad_groups(options = {})
  ad_groups = self.connection :adgroups, options
  ad_groups.map! do |ad_group|
    AdGroup.new ad_group[:id], ad_group.merge(
      :access_token => options[:access_token] || self.access_token
    )
  end
end