Displaying 2 results from an estimated 2 matches for "publish_stream".
2011 May 01
0
Fbgraph
..."Invalid redirect_uri: Given URL is not allowed by
the Application configuration."
}
}
In my controller,
def start
redirect_to client.authorization.authorize_url(:redirect_uri => "
http://localhost:3000/" , :scope =>
''email,user_photos,friends_photos,publish_stream'')
end
i want to post,poke to friends via my app ,is any other plugin available for
this .
Thanks in advance
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPx...
2011 Apr 20
1
Omniauth facebook authentication failure
...itializers/omniauth.rb
-----------------------------------------
Rails.application.config.middleware.use OmniAuth::Builder do
provider :twitter, ''xxxx'', ''xxxx''
provider :facebook, ''appid'', ''appsecret'',
{:scope=>''publish_stream,email''}
end
-------------------------------------
In my authentications controller
-------------------------------------
def create
omniauth = request.env["omniauth.auth"]
#search if user has been authenticated and application has been
authorised
authenticat...