Foursquare Api for venue search not working

285 Views Asked by At

I am new to foursquare api. I am trying to learn by doing a simple program to print the venues in the given latitude and longitude. But getting null pointer exception.

import fi.foyt.foursquare.api.FoursquareApi;
import fi.foyt.foursquare.api.FoursquareApiException;
import fi.foyt.foursquare.api.Result;
import fi.foyt.foursquare.api.entities.CompactVenue;
import fi.foyt.foursquare.api.entities.VenuesSearchResult;

public class Sample {

    public Venues VenuesList = new Venues();
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        try {
            FoursquareApi foursquareApi = new FoursquareApi("F3BNUXLWUFGTWKSTWXQ4MNTYVF4CSRMTDVQXZKFQUB1XWBT0",
                    "KKUWA3WSQOZJ2K1MPBBIK3EQOLOTA3KZJHVFPPFZPR0VIH4E", "http://www.eatin.com/redirect_uri");


            String latitude = "+40.689060";

            String  longitude = "-74.044636";
            searchVenues(latitude+","+longitude,foursquareApi );
        } catch (FoursquareApiException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }

    public static void searchVenues(String ll,FoursquareApi foursquareApi1) throws FoursquareApiException {

        Result<VenuesSearchResult> result = foursquareApi1.venuesSearch(ll, null, null, null, null, null, null,
                null, null, null, null);

        if (result != null){
            System.out.println("Not null");
            System.out.println(result.getResult());
            Venues venues = new Venues();

            for (CompactVenue venue : result.getResult().getVenues()) {
                venues.add(venue);
            }
            System.out.println("---------------Start List------------");
            for (CompactVenue venue : venues.getVenues()) {
                fi.foyt.foursquare.api.entities.Location loc =  venue.getLocation();
                Double lang = loc.getLat();
                Double lng = loc.getLng();
                System.out.println("Name: "+venue.getName()); 
                System.out.println("Distance: "+venue.getLocation().getDistance());
            }


        }

}
}

venues. java

import java.util.Collections;
import java.util.LinkedList;
import java.util.List;

import fi.foyt.foursquare.api.entities.CompactVenue;

public class Venues {
    private List<CompactVenue> venues = new LinkedList<CompactVenue>();

    public void add(CompactVenue Venue){
        venues.add(Venue);
    }

    @SuppressWarnings("unchecked")
    public List<CompactVenue> getVenues(){
        Collections.sort(venues, new ObjectComparator());
        return venues;
    }


}

ObjectComparable .java

 import java.util.Comparator;

import fi.foyt.foursquare.api.entities.CompactVenue;

import fi.foyt.foursquare.api.entities.CompactVenue;
import fi.foyt.foursquare.api.entities.Location;

public class ObjectComparator implements Comparator{
    public int compare(Object obj1, Object obj2) {

        if (obj1 instanceof CompactVenue && obj2 instanceof CompactVenue){
            CompactVenue v1 = (CompactVenue) obj1;
            CompactVenue v2 = (CompactVenue) obj2;

            double r = v1.getLocation().getDistance() - v2.getLocation().getDistance();

            if (r > 0){
                return 1;
            }
            else if (r < 0){
                return -1;
            }
        }
        return 0;
    }
}

The output I am getting here is:

Not null
null
Exception in thread "main" java.lang.NullPointerException
    at Sample.searchVenues(Sample.java:38)
    at Sample.main(Sample.java:20)

Can some please tell me what I am doing wrong here?? How can I print the venues on the given co ordinates??

0

There are 0 best solutions below