我怎样测试/ _ah /反弹?

时间:2013-04-04 00:53:32

标签: google-app-engine

我已经通过复制documentation中的代码实现了一个退回处理程序,但现在我想测试一下这个代码在我推出生产之前是否有效。有一个简单的方法吗?

1 个答案:

答案 0 :(得分:0)

我最后使用名为POSTMan的Chrome扩展程序来制定包含所有必需参数的POST请求,如BounceNotification类的文档字符串所示:

      post_vars: a dict-like object containing bounce information.
          This is typically the self.request.POST variable of a RequestHandler
          object. The following keys are expected in the dict:
            original-from
            original-to
            original-subject
            original-text
            notification-from
            notification-to
            notification-subject
            notification-text
            raw-message

当我发送所有必需的POST参数时,我确实看到我的退回处理程序获取请求并记录相应的信息。