1
0
Fork 0
mirror of https://github.com/simi/omniauth-facebook.git synced 2022-11-09 12:32:45 -05:00

add scope to example

This commit is contained in:
Mark Dodwell 2011-10-23 16:58:38 -07:00
parent 63b62add56
commit 5410957545

View file

@ -21,7 +21,7 @@ end
use Rack::Session::Cookie use Rack::Session::Cookie
use OmniAuth::Builder do use OmniAuth::Builder do
provider :facebook, ENV['APP_ID'], ENV['APP_SECRET'] provider :facebook, ENV['APP_ID'], ENV['APP_SECRET'], :scope => 'email,read_stream'
end end
run App.new run App.new