Examples of WeiboService


Examples of com.yym.sina.weibo.WeiboService

@RequestMapping(value="/weibo")
public class WeiboController {
 
  @RequestMapping(method=RequestMethod.GET)
  public @ResponseBody List<WeiboPost> getRecentWeiboPosts() {
    WeiboService ws = new WeiboServiceImpl();
    List<WeiboPost> result
      = ws.getRecentUserPost(WeiboServiceImpl.myUid);
    return result;
  }
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.