Chargify API - XML 问题 - '<'未找到
我正在尝试运行此 github https://github.com/abraham/chargify
使用此库 https://github.com/jforrest/Chargify-PHP-Client/
当我运行 subscriptions.php 文件时,出现此错误:
警告:SimpleXMLElement::__construct() [simplexmlelement.--construct]:实体:第 1 行:解析器错误:需要开始标记,'<'在第 557 行的 /Applications/MAMP/htdocs/abraham-chargify-ace5a40/lib/ChargifyConnector.php 中找不到
是什么导致了此错误/如何摆脱它?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
很抱歉,这个问题原来是设置问题。如果客户没有提交送货地址(必需),那么显然会生成上述错误。如果您在使用 Chargify 时遇到此错误,只需输入地址或删除送货地址要求即可。
Well sorry to say this problem turned out to be a settings problem. If the customer doesn't submit a shipping address (required) then that apparently generates the above error. Just input an address or remove the shipping address requirement if you fall into this error with Chargify.
当出现错误并且响应不是预期的 XML 时,就会发生这种情况。 Chargify-PHP-Client 仍尝试将响应解析为 XML 并抛出此错误。如果您在 Chargify 尝试解析响应之前查看响应,您通常会看到一条错误消息,它将引导您找到实际问题。
This happens when there is an error and the response is not XML as expected. Chargify-PHP-Client still tries to parse the response as XML and throws this error. If you look at the response before Chargify tries to parse it, you'll usually see an error message that will lead you to the actual problem.