EBSCO integration #2708
-
Hello, i'd like to integrate EBSCO api, i have set my credentials in EDS.ini file. But unfortunately it says that i encounter some issues in the frontend. My question is if there's any other solution i may use? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 12 replies
-
@ie76, if you fill in the EDS.ini settings, you should be able to perform searches at the /EDS endpoint under your VuFind base URL (e.g. here is a link to Villanova's version: https://library.villanova.edu/Find/EDS). If you only want to use VuFind for EDS searching, you can change the defaultModule setting in config.ini to make EDS your default search. If you want to combine different types of searches, see this wiki page: https://vufind.org/wiki/configuration:combining_search_types If none of that helps and you're still seeing an error, you might want to put VuFind into development mode, or try one of our other standard troubleshooting techniques, to narrow down what is going wrong. See: https://vufind.org/wiki/development:troubleshooting If after troubleshooting you have a more specific error message but aren't sure how to resolve it, please feel free to post more details here. Let me know if there's anything that requires further clarification, or if I can do anything else to help! |
Beta Was this translation helpful? Give feedback.
-
Thank you for your usual fast reply. In fact, i have solved the issue by setting ip_auth to false. Now i'd like to combine the searches in order to have them all in one search using the api. However, i'm still struggling now to try and make work swagger bypassing "Permission denied". Thank you for your answer 🙏. |
Beta Was this translation helpful? Give feedback.
-
@ie76, have you looked at permissions.ini? This is the file which controls the rules that grant various permissions within the system. You probably need to enable the API in order to get Swagger working. There is an example configuration here which will allow API access to localhost: https://github.com/vufind-org/vufind/blob/dev/config/vufind/permissions.ini#L165-L171 -- you can adjust the settings to make access broader if necessary. Let me know exactly what you need if you're not easily able to figure it out on your own and I can help with more details. |
Beta Was this translation helpful? Give feedback.
-
Hello @demiankatz well i'm trying to request the api from swagger from http://localhost:4567/vufind/swagger-ui/#/Search/get_search unfortunately i have as response |
Beta Was this translation helpful? Give feedback.
-
Another question, it maybe out of topic, i can open one if it's the case, but is the 9.0 available now ? Because the Blended Search is very interesting in my case. |
Beta Was this translation helpful? Give feedback.
@ie76, if you fill in the EDS.ini settings, you should be able to perform searches at the /EDS endpoint under your VuFind base URL (e.g. here is a link to Villanova's version: https://library.villanova.edu/Find/EDS). If you only want to use VuFind for EDS searching, you can change the defaultModule setting in config.ini to make EDS your default search. If you want to combine different types of searches, see this wiki page: https://vufind.org/wiki/configuration:combining_search_types
If none of that helps and you're still seeing an error, you might want to put VuFind into development mode, or try one of our other standard troubleshooting techniques, to narrow down what is going wrong. See: h…