algorithmia-java icon indicating copy to clipboard operation
algorithmia-java copied to clipboard

Java Client for Algorithmia Algorithms and Data API

Results 6 algorithmia-java issues
Sort by recently updated
recently updated
newest added

this simple call doesn't seem to work anymore: AlgorithmiaClient cli = Algorithmia.client(GlobalVariables.ALGORITHMIA_KEY); getting an error: com.algorithmia.APIException: Host name 'api.algorithmia.com' does not match the certificate subject provided by the peer (CN=*.algorithmia.com)...

I get these errors when including the algorithmia jar in my pom file: ` [WARNING] The POM for org.xerial.sbt:sbt-sonatype:jar:1.1 is missing, no dependency information available ` ` [WARNING] The POM...

In [this builder chain](https://github.com/algorithmiaio/algorithmia-java/blob/8bd03dd469ec7c16c89647474f5b95491971aacc/src/main/java/com/algorithmia/client/HttpClient.java#L75-L79), the call to `useSystemProperties()` effectively results in ignoring the values set by `setMaxConnTotal(maxConnections)` and `setMaxConnPerRoute(maxConnections)`. And this isn't order-dependent, because the actual properties used by the...

I have been unable to connect to Algorithmia after many different attempts. I even created a new key with full access. The call below throws the exception below. final AlgorithmiaClient...

https://github.com/algorithmiaio/algorithmia-java/blob/e6d90c4e375ba868a5d082432412166b5cc9530b/src/main/java/com/algorithmia/data/DataObject.java#L68 If you use a dropbox or s3 connector, `toString` will return a URI like `data://s3://foo/bar`

Current: if(result.isFailure(){ AlgorithmException e = ((AlgoFailure)result).error e.getMessage(); e.printStackTrace(); } --- This isn't a good experience and does not surface all of the available data in the response Needed: if(result.isFailure(){ AlgoFailure...