我已经通过从文档中复制代码实现了一个反弹处理程序,但现在我想在将其推出生产之前测试此代码是否有效。是否有捷径可寻?
问问题
126 次
1 回答
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 参数时,我确实看到我的退回处理程序收到了请求并记录了适当的信息。
于 2013-04-04T01:02:17.877 回答