We''ve recently set up a new application to branch our current app. The onlything that has really changed is 1) We have a new CanvasPage Api and Secret Key. When I try and hit my canvas page I get a 500 error and in the log I see: Processing FbSiteController#index (for 69.63.176.93 at 2008-07-24 15:31:49) [GET] Session ID: f24d8a05ea0d0b890785c3aadbe6df43 Parameters: {"fb_sig_time"=>"1216913509.4144", "fb_sig"=>"3495aac818a97e344cde747f893235d7", "_method"=>"GET", "fb_sig_locale"=>"en_US", "action"=>"index", "fb_sig_position_fix"=>"1", "fb_sig_in_canvas"=>"1", "fb_sig_request_method"=>"GET", "controller"=>"fb_site", "fb_sig_added"=>"0", "fb_sig_api_key"=>"aac4a507072a2272861620d4465805f9"} Facebooker::Session::MissingOrInvalidParameter (Invalid parameter): It''s seems the error is because the session data is not entirely complete there is no fb_sig_user in the params. Anyone seen this before and have any suggestions? Thanks --ken -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/facebooker-talk/attachments/20080724/1f1d6024/attachment.html>
It''s hard to guess without a lot of code. My thought would be that you are using the facebook_session object somewhere. This is trying to request an auth_token from Facebook without a user ID. Does anyone understand the way requesting an auth token works? It seems to me we should never do that if no UID is present. Mike On Jul 24, 2008, at 11:36 AM, Ken Schroeder wrote:> We''ve recently set up a new application to branch our current app. > The onlything that has really changed is 1) We have a new CanvasPage > Api and Secret Key. When I try and hit my canvas page I get a 500 > error and in the log I see: > > Processing FbSiteController#index (for 69.63.176.93 at 2008-07-24 > 15:31:49) [GET] > Session ID: f24d8a05ea0d0b890785c3aadbe6df43 > Parameters: {"fb_sig_time"=>"1216913509.4144", > "fb_sig"=>"3495aac818a97e344cde747f893235d7", "_method"=>"GET", > "fb_sig_locale"=>"en_US", "action"=>"index", > "fb_sig_position_fix"=>"1", "fb_sig_in_canvas"=>"1", > "fb_sig_request_method"=>"GET", "controller"=>"fb_site", > "fb_sig_added"=>"0", > "fb_sig_api_key"=>"aac4a507072a2272861620d4465805f9"} > > Facebooker::Session::MissingOrInvalidParameter (Invalid parameter): > > It''s seems the error is because the session data is not entirely > complete there is no fb_sig_user in the params. Anyone seen this > before and have any suggestions? Thanks --ken > > _______________________________________________ > Facebooker-talk mailing list > Facebooker-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/facebooker-talk-- Mike Mangino http://www.elevatedrails.com
Looks like I had some faulty session data from trying to add the App new with a misconfiguration. Clearing my session table fixed the problem. On Thu, Jul 24, 2008 at 11:45 AM, Mike Mangino <mmangino at elevatedrails.com> wrote:> It''s hard to guess without a lot of code. My thought would be that you are > using the facebook_session object somewhere. This is trying to request an > auth_token from Facebook without a user ID. > > Does anyone understand the way requesting an auth token works? It seems to > me we should never do that if no UID is present. > > Mike > > > On Jul 24, 2008, at 11:36 AM, Ken Schroeder wrote: > > We''ve recently set up a new application to branch our current app. The >> onlything that has really changed is 1) We have a new CanvasPage Api and >> Secret Key. When I try and hit my canvas page I get a 500 error and in the >> log I see: >> >> Processing FbSiteController#index (for 69.63.176.93 at 2008-07-24 >> 15:31:49) [GET] >> Session ID: f24d8a05ea0d0b890785c3aadbe6df43 >> Parameters: {"fb_sig_time"=>"1216913509.4144", >> "fb_sig"=>"3495aac818a97e344cde747f893235d7", "_method"=>"GET", >> "fb_sig_locale"=>"en_US", "action"=>"index", "fb_sig_position_fix"=>"1", >> "fb_sig_in_canvas"=>"1", "fb_sig_request_method"=>"GET", >> "controller"=>"fb_site", "fb_sig_added"=>"0", >> "fb_sig_api_key"=>"aac4a507072a2272861620d4465805f9"} >> >> Facebooker::Session::MissingOrInvalidParameter (Invalid parameter): >> >> It''s seems the error is because the session data is not entirely complete >> there is no fb_sig_user in the params. Anyone seen this before and have any >> suggestions? Thanks --ken >> >> _______________________________________________ >> Facebooker-talk mailing list >> Facebooker-talk at rubyforge.org >> http://rubyforge.org/mailman/listinfo/facebooker-talk >> > > -- > Mike Mangino > http://www.elevatedrails.com > > > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/facebooker-talk/attachments/20080724/5483719b/attachment.html>