# (No longer supported) Import posts from Facebook group into Discourse

**URL:** https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089
**Category:** Self-Hosting
**Created:** [2013 年 4 月 22 日午後 9:27 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089 "2013-04-22T21:27:54Z")
**Posts on this page:** 20
**Page:** 3

<div class="post-metadata">

### Author: ![jesselperry](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jesselperry/32/119501_2.png) [@jesselperry](https://meta.discourse.org/u/jesselperry)
#### Post date: [2015 年 3 月 2 日午前 5:15 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/45 "2015-03-02T05:15:30Z")

</div>

I finally got mine to work by using `RAILS_ENV=production sudo -E -u discourse rake import:facebook_group` with root user, instead of just the `rake import:facebook_group` per instructions. Not sure why that is?

**Some tips for beginners…**  
Just did this successfully with a pretty small Facebook group. I’m new to Discourse and ruby - but I can Google 😉 So some tips below if any other newbies come along and need some help. I’m using the Docker for my Discourse install.

- The instructions refer to “config” and “lib” folders. Those are only accessible to you through ssh and doing cd to `/var/discourse` then `./launcher ssh app` then the “config” and “lib” folders are in `/var/www/discourse`
- To get files (namely import\_facebook.yml and import\_facebook.rake) into those folders, you’ll have to do this by placing the files via SFTP into `/var/discourse/shared/standalone`. Then those files are available on the **./launcher ssh app** side (for lack of a better term) in `/var/www/discourse` and you can use a command like `mv` to move them into the appropriate lib and config folders.
- Regarding installing the koala gem before you get started, that’s also by first accessing the **./launcher ssh app** area and doing cd to `/var/www/discourse`. An easy way to add koala to the gemfile is to run `gem install gemrat` then `gemrat koala`. Then after that you can run `bundle install` but it will probably warn you about the Gemfile.lock. I just followed per the error instructions and ran `bundle install --no-deployment` with success.
- When it was all done, it crashed my Discourse 🙂 I have 2GB of RAM and the import went great, but once it started processing the new users, I got the white screen on my site and it stopped working. So I waited a little bit, then rebuilt my Discourse using `./launcher` - now it’s working great. That had the added benefit of cleaning out the koala gem and Gemfile settings (I was a bit wary of how I had done the bundle install as root).
- Be warned! Even with the fake email addresses set, it will still attempt a lot of emails! So you may want to change your SMTP settings (Mandrill for instance has a “test” API you can use that doesn’t actually email out), so you don’t get a lot of bounceback notifications.

That’s all. I know this probably isn’t the cleanest way to do it - but if there are any other beginners out there that need the gaps filled in, hope this helps.

---

<div class="post-metadata">

### Author: ![Sander78](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sander78/32/296615_2.png) [@Sander78](https://meta.discourse.org/u/Sander78)
#### Post date: [2015 年 3 月 2 日午前 6:19 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/46 "2015-03-02T06:19:47Z")

</div>

Thanks! I’ll add your text to the readme, or you can submit a PR if you like.

I created this plugin way before Docker was cool, so that’s why the manual is a bit behind.

---

<div class="post-metadata">

### Author: ![jesselperry](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jesselperry/32/119501_2.png) [@jesselperry](https://meta.discourse.org/u/jesselperry)
#### Post date: [2015 年 3 月 3 日午前 12:31 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/47 "2015-03-03T00:31:50Z")

</div>

Thank **you** (and others in here) for the rake code. It went great and very reliably.

Do you think the text is helpful as-is? I quickly wrote it late at night after long hours of researching and testing.

---

<div class="post-metadata">

### Author: ![Sander78](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sander78/32/296615_2.png) [@Sander78](https://meta.discourse.org/u/Sander78)
#### Post date: [2015 年 3 月 3 日午後 3:27 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/48 "2015-03-03T15:27:19Z")

</div>

> [@jesselperry](#):
>
> Do you think the text is helpful as-is?

This week I’m bit busy, but I’ll have a look at it after that. Your text is helpful in making the transition from pre-Docker to post-Docker.

The thing with this plugin is that it’s not very Docker friendly. It’s also not part of the ‘official’ importers, those work differently. But it’s the only Facebook importer, so we’ll have to work with it. 😄

---

<div class="post-metadata">

### Author: ![thangngoc89](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/thangngoc89/32/115436_2.png) [@thangngoc89](https://meta.discourse.org/u/thangngoc89)
#### Post date: [2015 年 3 月 28 日午後 11:26 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/49 "2015-03-28T23:26:36Z")

</div>

I’m importing a large group with 10k users and 3 years activity. Got 500 erro from facebook because the importer send out so many requests. I think a simple cached for get user info would be nice.

P/s: I added a sleep on the loop as a temporary solution

---

<div class="post-metadata">

### Author: ![Sander78](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sander78/32/296615_2.png) [@Sander78](https://meta.discourse.org/u/Sander78)
#### Post date: [2015 年 3 月 29 日午前 9:16 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/50 "2015-03-29T09:16:46Z")

</div>

Thanks! We needed a test like that.

---

<div class="post-metadata">

### Author: ![thangngoc89](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/thangngoc89/32/115436_2.png) [@thangngoc89](https://meta.discourse.org/u/thangngoc89)
#### Post date: [2015 年 3 月 29 日午後 7:32 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/51 "2015-03-29T19:32:14Z")

</div>

@Sander78 I managed to import it. But it fail on certain post. No ideas. Return Facebook API Error 2 (Http code 500). But as I said. The code need a simple cache 😃

---

<div class="post-metadata">

### Author: ![Sander78](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sander78/32/296615_2.png) [@Sander78](https://meta.discourse.org/u/Sander78)
#### Post date: [2015 年 3 月 30 日午前 10:22 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/52 "2015-03-30T10:22:38Z")

</div>

That simple cache is above my knowledge level I’m afraid… But I’m open to a PR of course.

---

<div class="post-metadata">

### Author: ![michaeld](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/michaeld/32/1594_2.png) [@michaeld](https://meta.discourse.org/u/michaeld)
#### Post date: [2015 年 4 月 5 日午前 9:46 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/53 "2015-04-05T09:46:40Z")

</div>

> [@Sander78](#):
>
> However, since there Facebook username is in the database, they can simpy login using their Facebook login.

I’m having trouble getting this to work.

When trying to claim an account, a new account is created instead of claiming the existing account.

There is a mismatch between the user ID’s , I guess because of the “app scoping”. Does the token that is used making the import have to be connected in some way to the Facebook login configuration on Discourse in any way? If so, how?

I’m probably overlooking very simple, but what?

![](https://global.discourse-cdn.com/meta/original/3X/d/9/d900f9b661a32a4fbf7cfde4065818496cdfbff1.png)

---

<div class="post-metadata">

### Author: ![riking](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/riking/32/170938_2.png) [@riking](https://meta.discourse.org/u/riking)
#### Post date: [2015 年 4 月 5 日午後 4:27 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/54 "2015-04-05T16:27:11Z")

</div>

Do the two emails there match?

---

<div class="post-metadata">

### Author: ![michaeld](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/michaeld/32/1594_2.png) [@michaeld](https://meta.discourse.org/u/michaeld)
#### Post date: [2015 年 4 月 5 日午後 4:43 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/55 "2015-04-05T16:43:21Z")

</div>

No, the top one is empty. AFAIK that is by design:

> [@Sander78](#):
>
> Facebook won’t send the mail address when importing, so all users get a unique fake address. However, since there Facebook username is in the database, they can simpy login using their Facebook login.

---

<div class="post-metadata">

### Author: ![riking](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/riking/32/170938_2.png) [@riking](https://meta.discourse.org/u/riking)
#### Post date: [2015 年 4 月 5 日午後 6:37 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/56 "2015-04-05T18:37:31Z")

</div>

Well, the Facebook username isn’t what’s being used to match up the logins, so that’s a problem.

---

<div class="post-metadata">

### Author: ![michaeld](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/michaeld/32/1594_2.png) [@michaeld](https://meta.discourse.org/u/michaeld)
#### Post date: [2015 年 4 月 5 日午後 7:29 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/57 "2015-04-05T19:29:27Z")

</div>

Of course it isn’t - that wouldn’t be very secure. I think the email address isn’t being used either ? I _think_ the “link” is being compared, but the link is specific to the FB app, and the key used during import and the key/secret for FB auth aren’t seeing the same user.

---

<div class="post-metadata">

### Author: ![michaeld](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/michaeld/32/1594_2.png) [@michaeld](https://meta.discourse.org/u/michaeld)
#### Post date: [2015 年 4 月 6 日午前 11:29 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/58 "2015-04-06T11:29:51Z")

</div>

I did some tests, and it’s the `facebook_user_id` that needs to match. But it’s different for each app (the so called app-scoped-user-id) since Graph API v2.0.

@Sander78 What’s the right way to solve this?

---

<div class="post-metadata">

### Author: ![jetatomic](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jetatomic/32/42202_2.png) [@jetatomic](https://meta.discourse.org/u/jetatomic)
#### Post date: [2015 年 5 月 29 日午後 9:23 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/59 "2015-05-29T21:23:47Z")

</div>

Being new to all things Rails/Docker myself, I’m following through @jesselperry very helpful tips.

I’ve dropped the files from github into `/var/discourse/shared/standalone`, but the files aren’t showing up (or I just don’t know where to look) in `/var/www/discourse` after `./launcher enter app`.

How do I move them to the right place? Is there a step required to get them to show up, and/or which directory should I find the files in after entering the app?

[RESOLVED] found `./shared/config/import_facebook.yml` by using `find . -name *\facebook.yml\*` from `/` after entering the app. I’d previously been using find from `/var/www/discourse` and getting no results.

---

<div class="post-metadata">

### Author: ![jesselperry](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jesselperry/32/119501_2.png) [@jesselperry](https://meta.discourse.org/u/jesselperry)
#### Post date: [2015 年 5 月 29 日午後 10:24 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/60 "2015-05-29T22:24:16Z")

</div>

Good luck! I’m probably about the same experience level as you with Rails/Docker, so it’s kinda the blind leading the blind here 😉

But my import went great and the Discourse installation is still running fine.

Hope it works out.

---

<div class="post-metadata">

### Author: ![jetatomic](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jetatomic/32/42202_2.png) [@jetatomic](https://meta.discourse.org/u/jetatomic)
#### Post date: [2015 年 5 月 29 日午後 11:36 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/61 "2015-05-29T23:36:23Z")

</div>

Error: `LoadError: cannot load such file -- stringex`  
Resolved by: `gemrat stringex` then `bundle install --no-deployment`

Thought I was getting somewhere until…

```
Facebook token accepted
rake aborted!
NoMethodError: undefined method `[]' for nil:NilClass
/var/www/discourse/lib/tasks/import_facebook.rake:419:in `fb_extract_writer'
/var/www/discourse/lib/tasks/import_facebook.rake:146:in `block (2 levels) in fb_fetch_posts'
/var/www/discourse/lib/tasks/import_facebook.rake:145:in `each'
/var/www/discourse/lib/tasks/import_facebook.rake:145:in `block in fb_fetch_posts'
/var/www/discourse/lib/tasks/import_facebook.rake:141:in `each'
/var/www/discourse/lib/tasks/import_facebook.rake:141:in `fb_fetch_posts'
/var/www/discourse/lib/tasks/import_facebook.rake:86:in `block in <top (required)>'
Tasks: TOP => import:facebook_group

```

Any ideas as to whether this is script \<—\> facebook incompatibility, or some other config on my install?

---

<div class="post-metadata">

### Author: ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)
#### Post date: [2015 年 5 月 30 日午前 3:16 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/62 "2015-05-30T03:16:21Z")

</div>

that stringex dependency needs to be removed from our script, we not longer use it for anything.

---

<div class="post-metadata">

### Author: ![Sander78](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sander78/32/296615_2.png) [@Sander78](https://meta.discourse.org/u/Sander78)
#### Post date: [2015 年 5 月 30 日午前 5:25 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/63 "2015-05-30T05:25:55Z")

</div>

Is that in my script or somewhere in Discourse?

---

<div class="post-metadata">

### Author: ![su\_js1](https://avatars.discourse-cdn.com/v4/letter/s/e95f7d/32.png) [@su\_js1](https://meta.discourse.org/u/su_js1)
#### Post date: [2015 年 6 月 1 日午前 1:49 UTC](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089/64 "2015-06-01T01:49:03Z")

</div>

Helping @jetatomic and running into a problem with RateLimiter:

Kind of wondering now if the import is dying on something else and the --trace just spits out the last call which just happens to be to RateLimiter::LimitExceeded.

```
[4%] Creating topic 'So what's the scoop on land without property taxes 2015-02-12 18:57:11 +0000
rake aborted!
RateLimiter::LimitExceeded: RateLimiter::LimitExceeded
/var/www/discourse/lib/rate_limiter.rb:56:in `performed!'
/var/www/discourse/lib/rate_limiter/on_create_record.rb:42:in `block in rate_limit'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:443:in `instance_exec'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:443:in `block in make_lambda'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:224:in `call'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:224:in `block in halting_and_conditional'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:503:in `call'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:503:in `block in call'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:503:in `each'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:503:in `call'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:86:in `run_callbacks'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/callbacks.rb:306:in `_create_record'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/timestamp.rb:57:in `_create_record'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/persistence.rb:484:in `create_or_update'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/callbacks.rb:302:in `block in create_or_update'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:113:in `call'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:113:in `call'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:552:in `block (2 levels) in compile'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:502:in `call'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:502:in `call'
/usr/local/lib/ruby/gems/2.0.0/gems/activesupport-4.1.10/lib/active_support/callbacks.rb:86:in `run_callbacks'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/callbacks.rb:302:in `create_or_update'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/persistence.rb:103:in `save'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/validations.rb:51:in `save'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/attribute_methods/dirty.rb:21:in `save'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/transactions.rb:268:in `block (2 levels) in save'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/connection_adapters/abstract/database_statements.rb:199:in `transaction'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/transactions.rb:208:in `transaction'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/transactions.rb:268:in `block in save'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/transactions.rb:283:in `rollback_active_record_state!'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/transactions.rb:267:in `save'
/var/www/discourse/lib/post_creator.rb:280:in `save_post'
/var/www/discourse/lib/post_creator.rb:115:in `block in create'
/var/www/discourse/lib/distributed_mutex.rb:21:in `synchronize'
/var/www/discourse/lib/distributed_mutex.rb:5:in `synchronize'
/var/www/discourse/lib/post_creator.rb:185:in `block in transaction'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction'
/usr/local/lib/ruby/gems/2.0.0/gems/activerecord-4.1.10/lib/active_record/transactions.rb:208:in `transaction'
/var/www/discourse/lib/post_creator.rb:179:in `transaction'
/var/www/discourse/lib/post_creator.rb:113:in `create'
/var/www/discourse/lib/tasks/import_facebook.rake:223:in `block (2 levels) in fb_import_posts_into_dc'
/var/www/discourse/lib/tasks/import_facebook.rake:205:in `each'
/var/www/discourse/lib/tasks/import_facebook.rake:205:in `block in fb_import_posts_into_dc'
/var/www/discourse/lib/tasks/import_facebook.rake:158:in `each'
/var/www/discourse/lib/tasks/import_facebook.rake:158:in `fb_import_posts_into_dc'
/var/www/discourse/lib/tasks/import_facebook.rake:104:in `block in <top (required)>'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/task.rb:240:in `call'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/task.rb:240:in `block in execute'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/task.rb:235:in `each'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/task.rb:235:in `execute'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/task.rb:179:in `block in invoke_with_call_chain'
/usr/local/lib/ruby/2.0.0/monitor.rb:211:in `mon_synchronize'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/task.rb:172:in `invoke_with_call_chain'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/task.rb:165:in `invoke'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/application.rb:150:in `invoke_task'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/application.rb:106:in `block (2 levels) in top_level'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/application.rb:106:in `each'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/application.rb:106:in `block in top_level'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/application.rb:115:in `run_with_threads'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/application.rb:100:in `top_level'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/application.rb:78:in `block in run'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/application.rb:176:in `standard_exception_handling'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/lib/rake/application.rb:75:in `run'
/usr/local/lib/ruby/gems/2.0.0/gems/rake-10.4.2/bin/rake:33:in `<top (required)>'
/usr/local/bin/rake:23:in `load'
/usr/local/bin/rake:23:in `<main>'
Tasks: TOP => import:facebook_group

```

[Previous page](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089.md?page=2)

[Next page](https://meta.discourse.org/t/no-longer-supported-import-posts-from-facebook-group-into-discourse/6089.md?page=4)
