Zend_Service_Amazon_Simpledb 和特殊字符的问题

发布于 2024-10-15 19:04:59 字数 207 浏览 4 评论 0原文

我想使用 Zend Framework 将一些数据从 MySQL 复制到 SimpleDB。到目前为止它工作正常,但如果任何属性包含特殊字符,如“äöüß”,服务器会拒绝我的请求,并显示“我们计算的请求签名与您提供的签名不匹配。”。

如果所有特殊字符都以某种方式编码,SimpleDB 接受请求,但我希望它像这样。我能做什么来解决这个问题?我试图在谷歌中查找信息,但没有找到解决方案。

I want to copy some data from MySQL to SimpleDB with the Zend Framework. It works fine so far, but if any attribute contains special chars like "äöüß" the server refused my request with "The request signature we calculated does not match the signature you provided.".

SimpleDB accept the request, if all specialchars are encoded in some way, but I want it like it is. What can I do to solve that? I tried to find informatione in google, but I found no solution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

未蓝澄海的烟 2024-10-22 19:04:59

我找到了该问题的解决方案,但我必须更改 Zend_Service_Amazon_SimpleDb 中的一些代码。请求中缺少 http 标头。只需添加

$request->setHeaders('Content-Type', 'application/x-www-form-urlencoded; charset=utf-8');

在 _sendRequest() 中。

I found a solution for that problem, but I had to change some code in Zend_Service_Amazon_SimpleDb. There was a missing http-header in the request. Just add

$request->setHeaders('Content-Type', 'application/x-www-form-urlencoded; charset=utf-8');

in _sendRequest().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文