无法在rails中validationCSRF令牌的真实性

我正在使用PaypalAdaptive。 它正确发送ipn_notification。 ipnNotification动作方法如下 –

def ipn_notification ipn = PaypalAdaptive::IpnNotification.new ipn.send_back(request.raw_post.to_json) print "=====================request.raw_post#{request.raw_post}==============" if ipn.verified? PaymentMailer.notify_unknown(request.raw_post).deliver else logger.info "IT DIDNT WORK" end render :nothing => true end 

但它返回错误

 WARNING: Can't verify CSRF token authenticity rails 

对此问题有任何帮助。