Ivan T
Ivan T

Reputation: 1046

Java Crowdflower API

Does anybody know java wrapper for Crowdflower API. I have found so far only for Ruby. I would really appreciate if anybody could point me out at least an example.

Upvotes: 0

Views: 503

Answers (3)

ari
ari

Reputation: 11

There is an article in the CrowdFlower Success Center that highlights two additional java interfaces for the CrowdFlower API: 1) https://github.com/sparkica/CrowdFlowerClient and 2) https://github.com/0xF013/CrowdFlowerJavaAPI

Upvotes: 1

debarshi
debarshi

Reputation: 326

We have developed java api's for crowdflower

do check it out

https://github.com/debarshri/jcrowdflower

Upvotes: 1

Gilbert Le Blanc
Gilbert Le Blanc

Reputation: 51565

The CrowdFlower documentation page I found specifies that you send a URL and receive JSON output.

There are plenty of examples on Stack Overflow on how to parse JSON output in Java.

Convert a JSON string to object in Java?

How to parse JSON in Java

Parsing JSON Object in Java

If you had something else in mind, you need to be way more specific in your question. Like providing a link to the CrowdFlower page in question and pointing out the exact paragraph in the Crowdflower documentation that you're having problems with.

Upvotes: 2

Related Questions