Examples of VenueLinks


Examples of org.springframework.social.foursquare.api.VenueLinks

    public void getLinks() {
        mockServer.expect(requestTo("https://api.foursquare.com/v2/venues/VENUE_ID/links?oauth_token=ACCESS_TOKEN&v=20110609"))
            .andExpect(method(GET))
            .andRespond(withResponse(new ClassPathResource("testdata/venuelinks.json", getClass()), responseHeaders));
       
        VenueLinks links = foursquare.venueOperations().getLinks("VENUE_ID");
        assertTrue(links.getItems().size() > 0);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.