This RDAP service use default RDAP servers (called bootstrap) to respond to each request (there are various types of request for domain, IP, autonomous system). it’s also supposed to support custom server to respond to the query, this feature of using custom server instead of default bootstrap server is the one I’m interested in and also struggling with. Here is a bit more info about this default bootstrap and custom server https://github.com/openrdap/rdap/blob/master/bootstrap/client.go.
in my code, I provide the custom server url in the server, _ := url.Parse("https://rdap.markmonitor.com/rdap"), and I want to use that server to respond to the Domain query for google.com. By the way, if you put https://rdap.markmonitor.com/rdap/domain/google.com in the web browser you can see the expected result. But in the code this doesn’t work.
Maybe I misunderstand the way to provide the custom server url? Should that be done with &bootstrap.Client{}?
Thanks