0

I dont See that anyone already asked for this so

1.: Is there any way to Autorun like in online Kimono the tasks

2.: Did anyone get link to rss running?

It seams to runs on

http://localhost:3000

but when i Access it on ie, ff ore chrome i just get a blank page...

But on looking into source of this page it show everything

So it seams to get hidden, in any way :/

4

1 回答 1

2

看起来你实际上可以通过http://localhost:3000访问它,但是你需要完整的 API url,就像你在和服的 web 应用程序中使用的一样。

通常这将是:

http://localhost:3000/api/rss/<APINAME>?apikey=VoN0G0ULsa7rM7qqxVp2a66maHuv3Jkk

Where<APINAME>应替换为桌面应用程序中的值。

另请注意,上面“apikey”的值与您应该使用的值相同,因为它已编码到桌面用户的桌面应用程序中。

最后,如果您使用“修改结果”脚本,则需要在请求的末尾添加以下参数:

&kimmodify=1

编辑:上面的 URL 只返回您最后的手动抓取结果。以自动方式实际触发新的抓取/更新的最简单方法是发出请求:

http://localhost:3000/ws/startcrawl?apiid=<APINAME>

然后给爬取一些时间来完成并从上面的第一个 URL 获取结果。

于 2016-03-02T08:45:45.573 回答