- Notifications
You must be signed in to change notification settings - Fork0
The library provides convenient access to the Outscraper API from applications written in the Java language. Allows using Outscraper's services from your code.
License
outscraper/outscraper-java
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
The library provides convenient access to theOutscraper API from applications written in the Java language. Allows usingOutscraper's services from your code.
Java 11 or later
Edit your build.gradle file
repositories { maven { url"https://jitpack.io" }}dependencies { implementation'com.github.outscraper:outscraper-java:v2.0.0'}
Add the JitPack repository to your build file
<repositories><repository><id>jitpack.io</id><url>https://jitpack.io</url></repository></repositories>
Add the dependency
<dependency><groupId>com.github.outscraper</groupId><artifactId>outscraper-java</artifactId><version>v2.0.0</version></dependency>
You'll need to manually install the following JARs:
OutscraperClientclient =newOutscraperClient("SECRET_API_KEY");
Link to the profile page to create the API key
// Search for businesses in specific locations:JSONArrayresults =client.googleMapsSearch(newHashMap<String,Object>() {{put("query","bars ny usa");put("limit",10);}});System.out.println(results);// Get data of the specific place by idJSONArrayresults =client.googleMapsSearch(newHashMap<String,Object>() {{put("query","rChIJrc9T9fpYwokRdvjYRHT8nI4");put("language","en");}});System.out.println(results);// Get reviews of the specific place by idJSONArrayresults =client.googleMapsReviews(newHashMap<String,Object>() {{put("query","rChIJrc9T9fpYwokRdvjYRHT8nI4");put("reviewsLimit",20);put("language","en");}});System.out.println(results);// Search contacts from websiteJSONArrayresults =client.emailsAndContacts(newHashMap<String,Object>() {{put("query","outscraper.com");}});System.out.println(results);
Bug reports and pull requests are welcome on GitHub athttps://github.com/outscraper/outscraper-java.
About
The library provides convenient access to the Outscraper API from applications written in the Java language. Allows using Outscraper's services from your code.