-
Notifications
You must be signed in to change notification settings - Fork 3
Troubleshooting
Chris Grindstaff edited this page May 9, 2013
·
6 revisions
Let's get the easy ones out of the way first
- Did you copy
config-dist.js
toconfig.js
? - Did you edit your
config.js
and add the correct path to theapi
? - Did you enable API access for each user that plans on using ddd?
- in Tiny Tiny RSS open the preferences by navigating to
Actions
->Preferences
- Make sure the
Enable API access
checkbox is selected
Let's check the api
you used - here are a few ways to debug it:
a) you should be able to directly surf to the API end-point in your browser to make sure that API access is enabled and that you know the URL.
-
Confirm that you can get to your main TTRSS page, something like http://example.com/path/to/tt-rss
-
Confirm that you can surf to http://example.com/path/to/tt-rss/api You should see something like this in your browser
{"seq":null,"status":1,"content":{"error":"NOT_LOGGED_IN"}}
-
If all that works your
config.js
should use `api: /path/to/tt-rss/'
b) debug with Chrome Developer Tools - check the network and console tab