First of all a thank you for creating this wonderful project, I am sure a bright future lies ahead for it.
At this time the one and only indexer that is supported is Jackett. I am hapilly running Prowlarr however which supports similar feeds to Jackett using the /<INDEXER_ID>/api?apikey=<API_KEY>&t=search&q= url format. This presents me with an RSS feed that my webbrowser can understand and which looks valid to my eyes.
Streamarrfs errors out on Prowlarr feeds with this message: Feed not recognized as RSS 1 or 2.
Scowering through the code I found this line:
|
if (feed.type === FeedType.JSON) { |
That suggests it should be possible to supply a JSON feed, something that Prowlarr also supports through this endpoint:
/api/v1/search?apikey=<API_KEY>&indexerIds=<INDEXER_ID>&type=search&query=.
This time around the error is coming from Prowlarr which replies with a status code of 406, the Accept header in the request is set to application/rss+xml which is rightfully denied for an application/json request.
First of all a thank you for creating this wonderful project, I am sure a bright future lies ahead for it.
At this time the one and only indexer that is supported is Jackett. I am hapilly running Prowlarr however which supports similar feeds to Jackett using the
/<INDEXER_ID>/api?apikey=<API_KEY>&t=search&q=url format. This presents me with an RSS feed that my webbrowser can understand and which looks valid to my eyes.Streamarrfs errors out on Prowlarr feeds with this message:
Feed not recognized as RSS 1 or 2.Scowering through the code I found this line:
streamarrfs/server/src/torrents/sources/feeds/jackett/jackett-torrent-source.service.ts
Line 67 in 9a425dc
That suggests it should be possible to supply a JSON feed, something that Prowlarr also supports through this endpoint:
/api/v1/search?apikey=<API_KEY>&indexerIds=<INDEXER_ID>&type=search&query=.This time around the error is coming from Prowlarr which replies with a status code of 406, the Accept header in the request is set to
application/rss+xmlwhich is rightfully denied for anapplication/jsonrequest.