Examples of DoubanShuoAttachementObj


Examples of com.dongxuexidu.douban4j.model.shuo.DoubanShuoAttachementObj

 
  public static void testPostStatus () {
    try {
      String accessToken = testAccessToken();
      DoubanShuoService service = new DoubanShuoService();
      DoubanShuoAttachementObj att = generateAtt();
      if (service.postNewStatus("I like..", att, DefaultConfigs.API_KEY, accessToken)) {
        System.out.println("done!");
      } else {
        System.out.println("failed!");
      }
View Full Code Here

Examples of com.dongxuexidu.douban4j.model.shuo.DoubanShuoAttachementObj

    }
  }
 
  private static void parseJson () {
    try {
      DoubanShuoAttachementObj att = generateAtt();
      JsonHttpContent content = new JsonHttpContent(new JacksonFactory(), att);
      ByteArrayOutputStream os = new ByteArrayOutputStream();
      content.writeTo(os);
      String result = new String(os.toByteArray());
      System.out.println("result ! : " + result);
View Full Code Here

Examples of com.dongxuexidu.douban4j.model.shuo.DoubanShuoAttachementObj

  private static DoubanShuoAttachementObj generateAtt () {
    DoubanShuoMediaObj media = new DoubanShuoMediaObj();
    media.setHref("http://www.dongxuexidu.com");
    media.setSrc("http://www.dongxuexidu.com/img/logo75.jpg");
    media.setType("image");
    DoubanShuoAttachementObj att = new DoubanShuoAttachementObj();
    List<DoubanShuoMediaObj> ms = new ArrayList<DoubanShuoMediaObj>();
    ms.add(media);
    att.setMedias(ms);
    att.setDescription("http://www.dongxuexidu.com");
    att.setCaption("");
    att.setExpanedHref("http://www.dongxuexidu.com");
    att.setHref("http://www.dongxuexidu.com");
    att.setTitle("东学西读");
    att.setType("");
    return att;
  }
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.