Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 641561
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T21:04:34+00:00 2026-05-13T21:04:34+00:00

I’ve gone through the Facebooker msg archive, google, etc and found a couple messages

  • 0

I’ve gone through the Facebooker msg archive, google, etc and found a couple messages dealing with this and they basically say “Go look at the Facebook docs and see what is happening”. I did that, but I’m still not clear what is going on and why I’m not able to retrieve my profile or status arrays using Facebooker. I’m starting to think that the Facebooker direct API calls are “broken” and am going to try the equivalent FQL queries next.

Am I missing some sort of Facebooker User initialization or something? I’ve looked at the source, and the calls I’m making seem to be exactly what I’m looking for.

The error I’m getting is API_EC_INFO_NO_INFORMATION, “No information has been set for this user”. When I check my profile using the FB Tool Console, I see my info just fine.

What I’m trying to do is set up a beanstalk job to pull FB profile/status info, like so:

sess = Facebooker::Session.create("<key>", "<secret_key>")

# session_key passed to beanstalk as body payload
sess.secure_with! job.body

fbkr_user = Facebooker::User.new(sess.user.id, sess)

puts fbkr_user.get_profile_info.to_s    # info not set error

# same result if I go through the session, or try to get user.statuses
puts sess.user.get_profile_info
puts sess.user.statuses

ERROR:

[..]/gems/facebooker-1.0.62/lib/facebooker/parser.rb:646:in `process':
No information has been set for this user (StandardError)
       from /Users/notbrain/.gem/ruby/1.8/gems/facebooker-1.0.62/lib/
facebooker/parser.rb:36:in `parse'
       from /Users/notbrain/.gem/ruby/1.8/gems/facebooker-1.0.62/lib/
facebooker/service.rb:66:in `post'
       from /Users/notbrain/.gem/ruby/1.8/gems/facebooker-1.0.62/lib/
facebooker/session.rb:638:in `post_without_logging'
       from /Users/notbrain/.gem/ruby/1.8/gems/facebooker-1.0.62/lib/
facebooker/session.rb:649:in `post'
       from /Users/notbrain/.gem/ruby/1.8/gems/facebooker-1.0.62/lib/
facebooker/logging.rb:20:in `log_fb_api'
       from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/
ruby/1.8/benchmark.rb:308:in `realtime'
       from /Users/notbrain/.gem/ruby/1.8/gems/facebooker-1.0.62/lib/
facebooker/logging.rb:20:in `log_fb_api'
       from /Users/notbrain/.gem/ruby/1.8/gems/facebooker-1.0.62/lib/
facebooker/session.rb:648:in `post'
       from /Users/notbrain/.gem/ruby/1.8/gems/facebooker-1.0.62/lib/
facebooker/models/user.rb:390:in `get_profile_info'
       from app/workers/index_fb_user.rb:23
       from app/workers/index_fb_user.rb:6:in `loop'
       from app/workers/index_fb_user.rb:6
       from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `eval'
       from /Library/Ruby/Gems/1.8/gems/rails-2.3.5/lib/commands/runner.rb:
46
       from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in
`gem_original_require'
       from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in
`require'
       from script/runner:3
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T21:04:34+00:00Added an answer on May 13, 2026 at 9:04 pm

    I was making this much harder than it had to be (and using Facebooker incorrectly). The session.user object just needed to be populated before use, no need to use an external/explicit Facebooker::User object.

    File: app/workers/fb_processor.rb:

      beanstalk = Beanstalk::Pool.new([BEANSTALK_HOST])
      beanstalk.watch("index-fb-user")
    
      loop do
        begin
          session_key = job.body
          sess = Facebooker::Session.create(Facebooker.api_key, Facebooker.secret_key)
          sess.secure_with! session_key
    
          sess.user.populate
          puts sess.user.inspect
    
        rescue
          puts "Process FB User Failed: #{e.message}"
    
        ensure
          puts "Deleting job!"
          sess = nil
          # optional, depends on if job is re-spawned elsewhere if fail
          job.delete
    
        end
      end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I am trying to loop through a bunch of documents I have to put
I'm making a simple page using Google Maps API 3. My first. One marker
I have some data like this: 1 2 3 4 5 9 2 6
I have a bunch of posts stored in text files formatted in yaml/textile (from
We're building an app, our first using Rails 3, and we're having to build

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.