导星安装将此行添加到应用程序的Gemfile中: gem 'guidestar' 或者自己安装: gem install guidestar
然后使用像 /config/initializers/guidestar.rb
这样的初始化程序配置它:
Guidestar.configure do |config|
config.username = 'john@guidestar.org'
config.password = 'l3tm31n'
end
用法
初始化后,您可以通过以下方式在代码中使用它:
results = Guidestar.search(:keyword => 'monkeys', :limit => 20)
或者您可以创建一个 Guidestar::Client 对象并从那里开始:
client = Guidestar::Client
暂无评论