代码之家  ›  专栏  ›  技术社区  ›  d-man

Java脸谱网WebApp创建事件日期时区

  •  0
  • d-man  · 技术社区  · 14 年前

    Java FB API我正在创建脸谱网Web应用程序,创建甚至跟随是所需的参数。

    http://developers.facebook.com/docs/reference/rest/events.create

    假设我必须与没有时区的对象约会。

    Date startDate = new Date();
    Date endDate = new Date();
    

    有人能指导我如何转换这个需要FB格式。

    1 回复  |  直到 13 年前
        1
  •  1
  •   Gazler    14 年前

    startDate = (int) (System.currentTimeMillis() / 1000L);
    endDate = startDate + (1*60*60*24);
    

    (1*60*60*24) = 1 day, replace with the length of your event.