Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does Koala provide complete support for Facebook Ads API?

share|improve this question

1 Answer

up vote 1 down vote accepted

support both Graph API and REST API, Ads API available with both:

Update:
It wasn't clear, but there is no specific methods for Ads API in koala. You can just use it with Graph API (or REST API, which better to avoid due to deprecation). Just read documentation from links above to figure out what you need to use for working with Ads API

For example to create adcampaign you can use something like this:

@graph = Koala::Facebook::API.new(oauth_access_token)
@graph.put_connections('act_adAccountID',
                       'adcampaigns',
                       :campaign_spec => '[{"account_id":123456789,"name":"Campaign","daily_budget":10}]'
)
share|improve this answer
But I couldn't find a place where I could create adcampaign, adaccount, adcreative using the koala gem. Can you point me to the interface I need to look at. thanks very much. – diya Jan 31 '12 at 7:59
@amala, see my updated answer. – Juicy Scripter Jan 31 '12 at 10:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.