You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Dyn endpoint GET REST/AllRecord/<zone> has special support for query string arguments, for example, detail=y
Unfortunately, without using dirty ruby trickery, it's currently impossible to supply QS vars to this library for GET calls:
If supplied in a concatenated string in the resource path to rest_call (eg: "REST/AllRecord/example.com?detail=y"), this method unpacks and re-packs it with a / at the end, causing a broken path
If supplied in the arguments arg to rest_call, it's completely ignored in this if condition
The text was updated successfully, but these errors were encountered:
The Dyn endpoint
GET REST/AllRecord/<zone>
has special support for query string arguments, for example,detail=y
Unfortunately, without using dirty ruby trickery, it's currently impossible to supply QS vars to this library for
GET
calls:rest_call
(eg:"REST/AllRecord/example.com?detail=y"
), this method unpacks and re-packs it with a / at the end, causing a broken patharguments
arg torest_call
, it's completely ignored in this if conditionThe text was updated successfully, but these errors were encountered: