I'm building an extension for a school project that requires some UI-elements (in browser). To do that we're using an ApiOther endpoint to serve html pages in the browser.
We would like the user to be able to request these API-endpoints without the need of the API-key.
But when creating the endpoint and setting requiresApiKey to false. We can stil not querry the API without inserting the APIkey into the parameters.
this.addApiOthers(new ApiOther("name", params, false);
Is this a bug? or is this just not the correct way of doing this?