Data360 Analyze

 View Only
  • 1.  The URL provided cannot be converted to a URI

    Employee
    Posted 06-07-2019 16:04

    While attempting to extract data from an application by hitting the RESTful API, I get this error for one particular URL. I have successfully extracted data from other URLs on the same application, however this one throws the following error on running the HTTP node:

    The URL provided cannot be converted to a URI. URL: https://xyz/data (this is an example).See exception detail.

    Error code: brain.node.http.urlUriConversion
    Raised on 2019-06-07 at 19:55:52

    Java details:
    com.lavastorm.brain.node.http.HttpNodeNew
    (HttpNodeNew.java@695)

    My understanding is that there might be some issue with the way the URL is formatted. Could someone please explain the issue to me, and a possible workaround?

    Thanks!

     

     



  • 2.  RE: The URL provided cannot be converted to a URI

    Employee
    Posted 06-26-2019 04:01

    You may have 'unsafe' characters or reserved characters in the string which is to be used as the URL. You may need to URL encode (% encode) the string before using it with the HTTP node.