eikonapir setting without need for API proxy

I'm trying to set my R environment to work without the need for a separate login through the API proxy. I understood the port has been changed so I downloaded a new version of the eikonapir package and installed but it still doesn't work and gives error message below:

Error in get_proxy_port() : no slot of name "proxy_port" for this object of class "RequestInfo"

Best Answer

  • claudiu
    Answer ✓

    A workaround I found to work after looking at the changes in github is to add the line below after setting the app_id. Would still like to hear from the package owner on the reason for the initial error and if the workaround is the proper way to initialize the package maybe an update to the documentation would be well received by the R users community...

    set_proxy_port(9000L)

Answers