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

This is the Java API for the SODA 2.0 API

Results 8 soda-java issues
Sort by recently updated
recently updated
newest added

I am trying to run the following query: ```groovy def soql = new SoqlQueryBuilder() .addSelectPhrase("count(*)") .setWhereClause(":updated_at>'${dateString}'") .build(); ``` soda-java currently generates the following url: ``` https://data.cityofnewyork.us/resource/fhrw-4uyv.json?$select=count(*)&$where=:updated_at%3E%272018-05-08T21:19:25Z%27&$$version=2.0 ``` which returns ```...

Why Soda2Consumer require username and password? Shouldn't providing token is enough? If I interact with the server via http, token is the only thing I need

I authored some classes with Jackson annotations which included references to Socrata classes such as `Location`. I couldn't figure out why I was getting the following exception: ``` Caused by:...

As of 8/19, we require the [SNI](https://en.wikipedia.org/wiki/Server_Name_Indication) extensions to be supported by all HTTPS connections. - [ ] Identify a known-good configuration that works with SNI - [ ] Test...

When the in-progress work to add an `async` parameter to the publish method is ready, we should have the SodaWorkflow#publish method enable it so it polls for status.

I'm trying out the example code provided in the Readme and unfortunately I'm receiving the following error during compilation: ``` Exception in thread "main" java.lang.NoSuchMethodError: 'org.glassfish.jersey.client.JerseyClientBuilder org.glassfish.jersey.client.JerseyClientBuilder.withConfig(javax.ws.rs.core.Configuration)' at com.socrata.api.HttpLowLevel.createClient(HttpLowLevel.java:160) at...

Why [this line](https://github.com/socrata/soda-java/blob/a3cecfb9d9e4564fc0ef75d2947e1c64f95eff56/src/main/java/com/socrata/api/HttpLowLevel.java#L146) is hardcoded to use https protocol proxy? I need to get connectivity to my target through corporate proxy. I'm used to configure my environment variables like this:...