search for: oauthexception

Displaying 5 results from an estimated 5 matches for "oauthexception".

2011 May 13
2
"message": "Error validating application."
Hi I''m using omniauth to authenticate whith facebook and twitter Twitter is ok But when i push facebook button and log in facebook account it returns me message { "error": { "type": "OAuthException", "message": "Error validating application." } } How can i fix it? -- 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-/JYPxA39Uh5TLH3MbocFF+G/...
2011 Jan 02
1
fb-connect -Missing client_id parameter
Hi, I used facebook connect in my application for login and registration process using authlogic + authlogic connect gem. It works good in local machine, but in server it shows the error message like this. { "error": { "type": "OAuthException", "message": "Missing client_id parameter." } } Pls provide some solution to fix this. -- 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...
2013 May 14
1
Instagram Redirect error
Hi Folks, In just integrate instagram to my app. I got an error while redirect from instagram. {"code": 400, "error_type": "OAuthException", "error_message": "Redirect URI does not match registered redirect URI"} Please advise. Thank you -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop...
2011 May 01
0
Fbgraph
Hi All, Am new to rails ,am using fbgraph gem in rails 3 having the follwoing error { "error": { "type": "OAuthException", "message": "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 => ''...
2012 Oct 16
0
Rails 3 + fb_graph how to get access token to post to my own Facebook page
...t {|account| account if account.name == "BoaJobs.com"}.first page = FbGraph::Page.new(account.identifier) note = page.note!(:access_token => account.access_token, :subject => @title, :message => @message, :link => @url) But I am getting an error on the me.fetch line: OAuthException :: An active access token must be used to query information about the current user. Can somebody post some code that helps me solve this problem. Thank you very much in advance. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Grou...