Ejemplo n.º 1
0
 def post(self, *args, **kwargs):
     url = self.get_argument("url", None)
     a = Activity.get_act_by_url(url)
     if a:
         self.write(self.make_result(1, "get act by url OK", a))
     else:
         self.write(self.make_result(0, "url invalid", None))