我在使用 Paypal 的 CreateInvoiceRequest 时遇到问题,所以问题是:
CreateInvoiceRequest.dueDate(或 CreateAndSendInvoiceRequest)使用的日期时间格式是什么?
所有文档都说:
xs:dateTime (可选)发票付款到期的日期。
提前致谢。
编辑: 使用格式说明符“s”(例如:2009-06-15T13:45:30)适用于 Paypal。
它很可能是 ISO 8601,请参阅http://www.w3.org/TR/xmlschema-2/#isoformats。使用XmlConvert.ToString(DateTime.Now)
来查看它的外观。
但是,您如何使用 PayPal 的网络服务?您可能会发现 Visual Studio 的集成 Web 服务引用工具很有用,例如[Your Project in Solution Explorer] -> References -> [Right Click] -> Add Service Reference
,在这种情况下,将为您自动生成 Web 服务包装器。