0

I need to import some posts and their comments into my Telescope project. Is their a good way to do this?

It is really the same question like: Meteor JS - How to access posts programmatically in Telescope app

Community
  • 1
  • 1
  • I`m not sure if I follow. You want to import some posts and their comment (from where?) into your Telescope project? Or the opposite? Import the post of Telescope on another system? – Danilo Miranda Dec 06 '16 at 22:37
  • The posts and comments are from my own file, like json or xml. And I need to import such files into Telescope system. – Yousheng Dec 07 '16 at 01:55

1 Answers1

0

If you want to import an RSS feed, you can use the post-by-feed plugin:

https://github.com/xavcz/nova-post-by-feed

If you need to import from a JSON file or some other API, you'll have to write a script yourself. You can look at the getting-started package to see how to insert posts and comments on the server.

Sacha
  • 1,987
  • 1
  • 24
  • 41