Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can you search Bing for child-safe images using RBing?

I see that the Bing API has an AdultOption, but I don't see any way to use this option with RBing.

share|improve this question

2 Answers

Set :adult

require 'rbing'                                                                
require 'active_support/inflector'                                             

bing = RBing.new(YOUR_ACCOUNT_KEY)
bing.search('image', 'sex', :adult => "Strict" )

# or another way
bing.image('sex', :adult => "Strict")
# => {"results"=>[]}
bing.image('hump', :adult => "Strict")['results'].size
# contains 50 kid safe images
# => 50

By the way, I had to use travisp's 2.0-pre fork to get this to work because of the APPID migration issue that is going on. So if the original gem doesn't work use this one, the features/azure branch in which my account key worked instead of the deprecated APPID.

To install travisp 2.0 pre fork gem do the following.

gem install rbing-2.0.0.pre
share|improve this answer

Do this to install the right gem.

gem install rbing-2.0.0.pre

share|improve this answer

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.