When the create function is being called in Issue#14. It's actually doing a GETALL request before to check if the access rule already exists because 2 rules with same names can't exist. While doing this request it's sending the section as Query param which is unsupported by GET requests. Hence, the error.
Fix was to basically add a check before each request sent if the parameter exists as a valid parameter and then send it.
When the create function is being called in Issue#14. It's actually doing a GETALL request before to check if the access rule already exists because 2 rules with same names can't exist. While doing this request it's sending the section as Query param which is unsupported by GET requests. Hence, the error. Fix was to basically add a check before each request sent if the parameter exists as a valid parameter and then send it.