Package org.springframework.social.foursquare.api

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


    mockServer.expect(requestTo("https://api.foursquare.com/v2/checkins/CHECKIN_ID/addcomment?oauth_token=ACCESS_TOKEN&v=20110609"))
      .andExpect(method(POST))
      .andExpect(body("text=COMMENT_TEXT"))
      .andRespond(withResponse(new ClassPathResource("testdata/checkincomment.json", getClass()), responseHeaders));
   
    CheckinComment comment = foursquare.checkinOperations().addComment("CHECKIN_ID", "COMMENT_TEXT");
    assertEquals("commentid", comment.getId());
    mockServer.verify();
  }
View Full Code Here

TOP

Related Classes of org.springframework.social.foursquare.api.CheckinComment

Copyright © 2018 www.massapicom. 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.